Skip to content

fedoxyz/TaskTool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Shell

git clone https://github.com/fedoxyz/TaskTool.git

cd TaskTool/server && npm install

sudo -u postgres psql

SQL query to setup database

CREATE DATABASE db_name;

CREATE USER db_username PASSWORD 'db_password';

GRANT CONNECT ON DATABASE db_name TO db_username;

GRANT ALL PRIVILEGES ON DATABASE db_name TO db_username;

\c db_name postgres

GRANT ALL ON SCHEMA public TO db_username;

Start Server & Client

cd server && node server.js

cd client && npm install && npm run dev

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published