A Kanban board web app that allows users to visually plan, track and organize projects they are working on.
🚀 View Demo
Report Bug
·
Request Feature
Drag and drop functionality for lists, cards and subtasks implemented using React Beautiful DnD.
To get a local copy up and running follow these simple steps.
Install npm
npm install npm@latest -g
- Clone the repo
git clone https://github.com/Gkuzin13/jella.git
- Install Dependencies (client & server)
npm install cd client npm install
- Set Env Variables
# Create a .env file in root folder and add the following MONGODB_URI=mongodb://127.0.0.1:27017/localjella SESSION_SECRET=abc123
# Run server (:5000)
node server
# Run client (:3000)
cd client
npm start
# Run in root folder to test the server
npm test
# Run in client folder to test react
npm test