Following are the steps to run taskup on your local environment
- Install all the required packages and dependencies.
npm install
- Create a .env file in the same directory with the following configurations
DB_PASSWORD = <your mysql password>
ACCESS_TOKEN_SECRET = <secret key for access token>
DATABASE_URL = <your mysql url for connection>
- Run the dev server.
npm run devStart
- Click here to see the backend server running in the browser OR navigate to
http://localhost:5000
- To run the client, navigate into the client directory
cd client
- Run the client
npm start
- Click here to see the client running in the browser OR navigate to
http://localhost:3000