Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 789 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 789 Bytes

ketocalc - web app for ketogenic diet calculation and management

How to run project

  • Clone repository

  • create local .env file

    • use env.example for example
  • Prepare enviroment with pipenv

    • pipenv install
  • Prepare and update database

    • create scheme in db
    • pipenv run flask db upgrade
  • Run application on localhost

    export FLASK_ENV="development";
    export APP_STATE="development";
    pipenv run flask run;
    
    • see Flask documentation for more information

Formatted with: Code style: black

Checked for vulnerabilities with: security: bandit