The Kanban Board application built using Node.js, Express, Mongoose
- Uses Express as the application Framework.
- Authenticates via using JSON Web Tokens.
- Uses MongoDB and Mongoose for storing and querying data.
Make sure you have Node.js and npm installed.
-
Clone or Download the repository
$ git clone https://github.com/alireza-askarpour/kanban-board-backend.git $ cd kanban-board-backend
-
Install Dependencies
$ npm install
-
configure .env file
PORT = 8000 BASE_URL = http://localhost:8000 MONGO_URI = mongodb://127.0.0.1:27017/kanban SECRET_KEY= a878e7a850c5a3f0fae24530a3f5ca63
-
Start the application
# development mode $ npm run dev # production mode $ npm start
Your app should now be running on localhost:8000.