No description
Find a file
2024-09-19 16:02:02 +02:00
flaskr_tuto chargement automatique de la photo après upload 2024-09-19 16:02:02 +02:00
tests écriture tests contacts 2024-09-16 14:38:04 +02:00
.gitignore modificatino du gitignore' 2024-09-17 11:45:15 +02:00
all_in_one.sh correction des scripts, mais il subsiste des anomalies... 2024-09-19 15:54:56 +02:00
conftest.py regularisation du problème de nom de dossier en double 2024-08-27 13:57:57 +02:00
init_db.sh modification des scripts et ajout d'un script unique pour les gouverner tous 2024-09-19 09:54:04 +02:00
LICENSE.rst first commit 2024-08-01 14:16:22 +02:00
pyproject.toml regularisation du problème de nom de dossier en double 2024-08-27 13:57:57 +02:00
README.rst correction des scripts, mais il subsiste des anomalies... 2024-09-19 15:54:56 +02:00
run.sh correction des scripts, mais il subsiste des anomalies... 2024-09-19 15:54:56 +02:00
speed_run.sh correction des scripts, mais il subsiste des anomalies... 2024-09-19 15:54:56 +02:00
venv.sh correction des scripts, mais il subsiste des anomalies... 2024-09-19 15:54:56 +02:00

Flaskr
======

The basic blog app built in the Flask `tutorial`_.

.. _tutorial: https://flask.palletsprojects.com/tutorial/


Install
-------

**Be sure to use the same version of the code as the version of the docs
you're reading.** You probably want the latest tagged version, but the
default Git version is the main branch. ::

    # clone the repository
    $ git clone https://github.com/pallets/flask
    $ cd flask
    # checkout the correct version
    $ git tag  # shows the tagged versions
    $ git checkout latest-tag-found-above
    $ cd examples/tutorial

Create a virtualenv and activate it::

    $ python3 -m venv .venv ((ou source ./venv.sh))
    $ . .venv/bin/activate ((ou source ./venv.sh))

Or on Windows cmd::

    $ py -3 -m venv .venv
    $ .venv\Scripts\activate.bat

Install Flaskr::

    $ pip install -e .

Or if you are using the main branch, install Flask from source before
installing Flaskr::

    $ pip install -e ../..
    $ pip install -e .


Install Pillow

    * pip install Pillow

Run
---

.. code-block:: text

    $ flask --app flaskr_tuto init-db ((et ./init_db.sh))
    $ flask --app flaskr_tuto run --debug ((ou ./run.sh))

Open http://127.0.0.1:5000 in a browser.


Test
----

::

    $ pip install '.[test]'
    $ pytest

Run with coverage report::

    $ coverage run -m pytest
    $ coverage report
    $ coverage html  # open htmlcov/index.html in a browser


First Connexion
----
Username : admin
Password : admin