Skip to content

Latest commit

 

History

History
36 lines (35 loc) · 910 Bytes

File metadata and controls

36 lines (35 loc) · 910 Bytes

Following are the steps to run taskup on your local environment

  1. Install all the required packages and dependencies.
npm install
  1. 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>
  1. Run the dev server.
npm run devStart
  1. Click here to see the backend server running in the browser OR navigate to
http://localhost:5000
  1. To run the client, navigate into the client directory
  cd client
  1. Run the client
npm start
  1. Click here to see the client running in the browser OR navigate to
http://localhost:3000