Skip to content

Latest commit

 

History

History
66 lines (43 loc) · 959 Bytes

README.md

File metadata and controls

66 lines (43 loc) · 959 Bytes

Django & React Notes App

Cloning the Repository

Clone the repository using the command below:

git clone https://github.com/praptisharma28/TODO_DjangoReact

Move into the directory where we have the project files:

cd TODO_DjangoReact\Django-React-NotesApp>

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

Running the App

To run the Notes App, use the following command:

python manage.py runserver

⚠ Then, the development server will be started at http://127.0.0.1:8000/

Instruction for running with docker

create a .env file based up on the .env.example

docker volume create staticfiles
docker compose up