Skip to content

alireza-askarpour/kanban-board-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kanban Board Backend

The Kanban Board application built using Node.js, Express, Mongoose

Index

Features

Installation

Running Locally

Make sure you have Node.js and npm installed.

  1. Clone or Download the repository

    $ git clone https://github.com/alireza-askarpour/kanban-board-backend.git
    $ cd kanban-board-backend
    
  2. Install Dependencies

    $ npm install
    
  3. configure .env file

       PORT = 8000
    
       BASE_URL = http://localhost:8000
       MONGO_URI = mongodb://127.0.0.1:27017/kanban
    
       SECRET_KEY= a878e7a850c5a3f0fae24530a3f5ca63
    
  4. Start the application

    # development mode
    $ npm run dev
    
    # production mode
    $ npm start

Your app should now be running on localhost:8000.