https://medicalstoreapi.herokuapp.com/api/
https://pacific-falls-18076.herokuapp.com/
USername : admin
Password : admin
https://dashboard.heroku.com/apps
https://devcenter.heroku.com/articles/heroku-cli#download-and-install
heroku login
heroku create PROJECT_NAME
ADD Python Version in this File (E.G python-3.7.4)
CHECK requirements.txt File
web: gunicorn PROJECT_LOCATIOn.wsgi --log-file - (E.G : web: gunicorn DjangoMedicalStoreManagementSystem.wsgi --log-file -)
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)"]
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
Django Medical Store management System Client Side in React JS