https://github.com/deepaksilaych/happy_place
https://github.com/deepaksilaych/happy_place
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/deepaksilaych/happy_place
- Owner: DeepakSilaych
- Created: 2024-01-15T16:40:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-11T14:03:55.000Z (over 2 years ago)
- Last Synced: 2025-02-09T04:41:07.256Z (over 1 year ago)
- Language: JavaScript
- Size: 41.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## How to run frontend
```
cd frontend
npm install
npm start
```
## How to run backend
```
cd backend
python manage.py runserver
```
## How to run both frontend and backend
```
cd frontend
npm start
```
In another terminal
```
cd backend
python manage.py runserver
```