Skip to content

Latest commit

 

History

History
58 lines (42 loc) · 1.66 KB

README.md

File metadata and controls

58 lines (42 loc) · 1.66 KB

Task Master

TaskMaster is a powerful and user-friendly to-do list app designed to help you stay organized, boost productivity, and manage your tasks efficiently. Whether you're a busy professional, a student with a hectic schedule, or anyone looking to streamline their daily activities, TaskMaster has you covered. TaskMaster, your tasks, mastered! Built with React and Go.

Running Instructions

  • Create .env file inside backend folder.
PORT = 8080
GIN_MODE = "release"

# postgres connection
DB_HOST = ""
DB_PORT = 
DB_NAME = ""
DB_USER = ""
DB_PASSWORD = ""

JWT_SECRET = "" # can be anything
  • In the project directory run:
npm run start

Open http://localhost:3000 to view it in your browser.

  • Alternatively refer to backend/README.md and frontend/README.md for the running frontend or backend separately.
  • Frontend runs in Port 3000
  • Backend runs in Port 8080
  • Make sure no other process is using this port.