Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bhuvaneshwarguttula/django-react-notesapp
https://github.com/bhuvaneshwarguttula/django-react-notesapp
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bhuvaneshwarguttula/django-react-notesapp
- Owner: bhuvaneshwarguttula
- Created: 2024-06-17T07:47:30.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-18T16:34:15.000Z (7 months ago)
- Last Synced: 2024-06-18T20:57:08.431Z (7 months ago)
- Language: Python
- Size: 207 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 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/
#