Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 870 Bytes

README.md

File metadata and controls

44 lines (34 loc) · 870 Bytes

DRF Notebook

A simple notebook that uses React on the front and Django on the back-end

--> Clone repository .

--> Move into the directory where we have the project files :

cd drf-notebook

--> Create a virtual environment :

# If you are on Windows
virtualenv env
# If you are on Linux or Mac
python -m venv env

--> Activate the virtual environment :

# If you are on Windows
.\env\Scripts\activate
# If you are on Linux or Mac
source env/bin/activate

--> Install requirements :

pip install -r requirements.txt

Running the App

--> run project :

python manage.py runserver

⚠ Open this link in the browser http://127.0.0.1:8000/