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

https://github.com/deepaksilaych/happy_place


https://github.com/deepaksilaych/happy_place

Last synced: over 1 year ago
JSON representation

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
```