Skip to content

Preshh0/zuri_team_progress_tracker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

progress tracker backend

how to run this project locally

Clone this project

create .env file in the backend directory and add your env variable

SECRET_KEY=

create virtual environment

python -m venv venv

activate virtual environment

# for windows 
venv\scripts\activate

# for mac 
venv/bin/activate

# for linux
source venv/bin/activate

IMPORTANT: Delete the migrations folder inside the app folder

create a folder name "migrations" inside the "app" folder & also create a "init.py" file inside the "migrations"

migrations
    __init__.py

install dependencies

pip install -r requirements.txt

migrate models

python manage.py makemigrations

python manage.py migrate

run server

python manage.py runserver

About

No description, website, or topics provided.

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 52.3%
  • Vue 40.6%
  • JavaScript 6.6%
  • Other 0.5%