https://github.com/marktennyson/blog-app-django
simple rest api based blog app using Django rest framework
https://github.com/marktennyson/blog-app-django
Last synced: 6 months ago
JSON representation
simple rest api based blog app using Django rest framework
- Host: GitHub
- URL: https://github.com/marktennyson/blog-app-django
- Owner: marktennyson
- Created: 2020-11-15T06:54:13.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-18T05:24:17.000Z (almost 5 years ago)
- Last Synced: 2025-02-12T22:17:53.834Z (8 months ago)
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# blog-app-django
simple rest api based blog app using django rest frameworkTo run this project:
# Ubuntu
1. sudo apt-get install npm
2. npm i pm2 -g
3. pm2 start run.py --interpreter=python3# macOS
1. brew install npm
2. npm i pm2 -g
3. pm2 start run.py --interpreter=python3# stop the instance :
pm2 stop {id} (eg: pm2 stop 0)# restart the instance :
pm2 restart {id} (EG: PM2 restart 0)# delete the instance :
pm2 delete {id} (eg: pm2 delete 0)