--> Clone the repository using the command below :
git clone https://github.com/dghuuloc/StudyBoard.git
--> Move into the directory where we have the project files :
cd StudyBoard
--> Create a virtual environment :
# We should create our virtual environment
$ python -m venv venv
--> Activate the virtual environment :
$ source venv/bin/activate
--> Install the dependencies :
$ poetry install
$ createdb -h localhost -p 5432 -U postgres studyboard--> To run the App, we use :
python manage.py runserver
⚠ Then, the development server will be started at http://127.0.0.1:8000/
