/ProjeTor

Online Project Management Platform

Primary LanguagePythonApache License 2.0Apache-2.0

Pro[ j ]tor

Online Project Management Platform

Getting Started

to get started for development, run the following commands in install section:

requirements:

  • python 3.10
  • node 14.x

install:

install python requirements after creating virtual environment:

pip install -r requirements.txt

install node requirements:

cd ./frontend
npm install 

build ui components like tailwindcss:

npm run build

Running:

for running react app, you can run the following commands:

cd ./frontend
npm run start

for running django app first you need to migrate the database:

cd ./backend
python manage.py migrate user
python manage.py migrate

create a superuser:

python manage.py createsuperuser

then run the django app:

python manage.py runserver