https://github.com/hackstarsj/djangomedicalstoremanagementsystem
DjangoMedicalStoreManagementSystem Server Side
https://github.com/hackstarsj/djangomedicalstoremanagementsystem
Last synced: about 1 year ago
JSON representation
DjangoMedicalStoreManagementSystem Server Side
- Host: GitHub
- URL: https://github.com/hackstarsj/djangomedicalstoremanagementsystem
- Owner: hackstarsj
- Created: 2020-07-12T09:44:18.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T06:47:35.000Z (over 3 years ago)
- Last Synced: 2025-04-02T02:22:13.399Z (about 1 year ago)
- Language: Python
- Size: 32 MB
- Stars: 102
- Watchers: 4
- Forks: 45
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DjangoMedicalStoreManagementSystem
## Live API URL
https://medicalstoreapi.herokuapp.com/api/
## Live Project LINK
https://pacific-falls-18076.herokuapp.com/
## Login DETAILS
USername : admin
Password : admin
# For Deploy React APP in HEROKU
## Signup in HEROKU
https://dashboard.heroku.com/apps
## Download Heroku Login
https://devcenter.heroku.com/articles/heroku-cli#download-and-install
## Login To Heroku
heroku login
## Create Project in Heroku
heroku create PROJECT_NAME
## Create runtime.txt
ADD Python Version in this File (E.G python-3.7.4)
## Create requirements.txt and Add Libraries
CHECK requirements.txt File
## Create Procfile
web: gunicorn PROJECT_LOCATIOn.wsgi --log-file - (E.G : web: gunicorn DjangoMedicalStoreManagementSystem.wsgi --log-file -)
## Change Settings.py Setting
First Allowed HOST DOMAIN NAME
Second ADD Middleware "whitenoise.middleware.WhiteNoiseMiddleware"
Third ADD CORS_ORIGIN_WHITELIST = ["ADD DOMAIN HERE WITH HTTP URL (E.G : http://localhost:3000)"]
## FOURTH ADD THIS SETTING in settings.py
import dj_database_url
prod_db=dj_database_url.config(conn_max_age=500)
DATABASES['default'].update(prod_db)
##================PROJECT DETAIL============
DjangoMedicalStoreManagementSystem Server Side
For Project Tutorial Please Follow Video : https://www.youtube.com/playlist?list=PLb-NlfexLTk_lsm7qMjMamK51bTAbQ3mH
### For Client Side React Project Follow This Link.
Django Medical Store management System Client Side in React JS
ER Diagram

## How Django and React Works.
