설명 없음

Francesco 94c9d08423 Output in local folder 1 년 전
parsers b16ee56bcb style 1 년 전
samples e261f9235e speriamo 1 년 전
templates 4c089ff022 better_error_redirect 1 년 전
venv 071db4349b add new configuration file for archivial data 1 년 전
.gitignore 4489aee4e7 ignore_log 1 년 전
app.log e261f9235e speriamo 1 년 전
app.py 94c9d08423 Output in local folder 1 년 전
app.wsgi e261f9235e speriamo 1 년 전
readme.md e7570db04e FIRST 1 년 전
requirements.txt e261f9235e speriamo 1 년 전

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)