Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bhuvaneshwarguttula/django-react-notesapp


https://github.com/bhuvaneshwarguttula/django-react-notesapp

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Django & React Notes App










### Cloning the repository

Clone the repository using the command below :
```bash
git clone https://github.com/bhuvaneshwarguttula/Django-React-NotesApp.git

```

Move into the directory where we have the project files :
```bash
cd Django-React-NotesApp

```

Create a virtual environment :
```bash
# If you are on Windows
virtualenv env
# If you are on Linux or Mac
python -m venv env
```

Activate the virtual environment :
```bash
# If you are on Windows
.\env\Scripts\activate
# If you are on Linux or Mac
source env/bin/activate
```

Install the required packages :
```bash
pip install -r requirements.txt

```

#

### Running the App

To run the Notes App, we use :
```bash
python manage.py runserver
```

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

#