No Description

Alessia faa6fd8649 Add distance default value 2 years ago
.idea f83826b22b add notebook for cooccorrenze 2 years ago
flask_be c65104ead6 formeLemmi 2 years ago
site2 faa6fd8649 Add distance default value 2 years ago
.gitignore 51c8e576cc mocked data and improved gitignore 2 years ago
Search Progetto 2023.zip 027a58f3ee superbase per il search di Lemmi e Forme. 2 years ago
Techman 4.doc 256ea2e193 improved_v0 2 years ago
downloadInDifferentTextFormat.html 9cf0ed040e Scaricamento testo in txt,doc,rtf e docx 2 years ago
provaPacciani.html ff0c5de1ab File per stampare come immagine due stringhe. Base per la visualizzazione dei dati per TIGRO 2 years ago
readme.md 29a7b16b66 create new folder test 2 years ago
~$chman 4.doc c7d9641202 add images and new notebook 2 years ago

readme.md

To get flask running (use Python 3!):

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

    • Going to the flask_be 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 + Flask-Cors (used to prevent annoying CORS error in local development) by executing:

    • pip install Flask-Cors
  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)