Skip to content

Amirmadjour/tab_de_codage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tab_de_codage

installation

  • Clone repo into your local machine
git clone [email protected]:Amirmadjour/tab_de_codage.git
  • Create a Python virtual environment to install your packages without affecting the system-wide installation.
cd tab_de_codage
python3 -m venv venv # For Linux (use python -m venv venv for windows)
  • Activate the virtual enviroment for installation
source venv/bin/activate  # For Linux/macOS(use venv\Scripts\activate for windows)
  • Install required packages for django
cd backend
pip install -r requirements.txt # install the required packages
  • Deactivate the virtual enviroment when done installation
deactivate # deactivate the virtual enviroment
  • Install required packages for next js
cd ../frontend
npm i

Development

  • Create two terminals

  • First terminal: run Next js server

cd frontend
npm run dev
  • Second terminal: run Django server
cd backend
python manage.py runserver

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published