kora 238c4886d2 replaced parser in FORMS il y a 2 ans
..
parser 238c4886d2 replaced parser in FORMS il y a 2 ans
templates bab5302a6c Update for changes il y a 2 ans
venv bab5302a6c Update for changes il y a 2 ans
.gitignore 5b5d9907ac suffer il y a 2 ans
action_page.php 2ab61361dd First feature commit il y a 2 ans
app.py 5b5d9907ac suffer il y a 2 ans
readme.md 521635e8f1 forms_readme il y a 2 ans

readme.md

To get flask running (use Python 3!):

  1. [Optional but recommendend] Create and activate virtual environment by:

    • Going to the FORMS subdirectory
    • Executing: python (or python3 or py depending on your system) -m venv [virtual_environment_name]
    • Executing: source [virtual_environment_name]/bin/activate
  2. Install Flask by executing:

    • pip install flask
  3. [Optional] Activate Debug Mode by setting the environment variable:

    • FLASK_ENV=development (for instance by executing export FLASK_ENV=development in bash)
  4. Start the app by executing:

    • flask run

(vscode can do 3. and 4. automatically, and possibly the venv setup too)