Skip to content

How to run application in dev

Justin Ventura edited this page Apr 18, 2022 · 3 revisions

REQUIRED:

  • postgreSQL
  • create and fill .env in ./ (root) and in ./src/. See *.env.example

FLASK SERVER:

  • pip install -r requirements.txt
  • flask db init && flask db migrate && flask db upgrade
  • flask seed run
  • flask run

FRONT-END:

  • npm i
  • npm run dev

Clone this wiki locally