Data base driven website for health insurance company

installation

  • Windows

    $ py -m venv venv
    $ source venv/Scripts/activate
    $ pip install -r requirements.txt
  • Linux

    $ virtualenv venv
    $ source venv/bin/activate
    $ pip install -r requirements.txt

Running command

  • $ python main/views.py 
    

Note

  • add file database_secrets.py to main folder
    HOST = 'YOUR_HOST'
    DATABASE = 'YOUR_DATABASE'
    USER = 'YOUR_USER'
    PASSWORD = 'YOUR_PASSWORD'