Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 787 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 787 Bytes

Kanban-Board-MERN

Setup instruction

  • Step 1: install dependencies/node_module

    • Go to /backend directory for backend setup and run npm install

    • Go to /frontend directory for frontend setup and run npm install

  • Step 2: Configure mongodb connection url Go to backend directory and create .env file and put into MONGODB_PATH=your-mongodb-connection-url

  • Step 3: Change server port and cors origin (Optional) by default your server running in port http://localhost:9000 and cors origin/frontend url ishttp://localhost:3000 , you can change port and cors, simply put this key into your .env SERVER_PORT=your-port and CORS_ORIGIN=-your-client-origin

  • Step 4: Run project in your backend npm run serve for start node server and npm run start for frontend