Skip to content

πŸ› A bug tracker to help my development process.

Notifications You must be signed in to change notification settings

akadot/bug-tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

16 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ› Bug Tracker

A bug tracker to help my development process.

Get Started

  • Clone or download this repository

  • Access folders ./server and ./web

  • Install dependencies on both folders

yarn install
or
npm install

🌐 Server

  • Create a Postgres database

  • Create tables following this file

  • Create a .env file with this infos

PORT = (server port)
DB_HOST = (postgres host)
DB_PORT = (postgres port)
DB_USER = (postgres user)
DB_PASS = (postgres password)
DB_DATABASE = (postgres database name)
TOKEN_SECRET = (generate random characters to your token secret)
  • Start server
yarn dev
or
npm run dev

πŸ’» Web

  • Start react development server
yarn start
or
npm run start
  • Access localhost:3000 to be redirected to Login page

  • Every user created in Register page, will recieve an "normal user" role. To change this, make an admin in the database before.