No description
Find a file
Neo a5b289e120 Update site to Material design
This commit updates the entire site to follow Material design
guidelines, providing a more modern look and feel. The font has
been changed to 'Roboto' and 'Roboto Slab' for a cleaner
typography. The color scheme has been adjusted to match the
provided palette, enhancing the visual appeal and consistency
across the site.

Additional changes include:
- Updated background and text colors for better contrast.
- Added box shadows and border-radius for a softer appearance.
- Improved button styling with hover effects for better
  interactivity.

These changes aim to improve user experience by aligning with
current design standards and making the interface more
intuitive and visually appealing.

Fixes #FLAS-4
2024-09-06 12:35:40 +01:00
.devcontainer update project files (#5457) 2024-04-07 10:24:40 -07:00
.github set up pre-commit lite workflow 2024-09-01 09:04:14 -07:00
flaskr Update site to Material design 2024-09-06 12:35:40 +01:00
tests I just want the tutorial 2024-09-06 00:18:20 +01:00
.editorconfig update project files (#5457) 2024-04-07 10:24:40 -07:00
.gitignore update project files (#5457) 2024-04-07 10:24:40 -07:00
.pre-commit-config.yaml remove pre-commit.ci update 2024-08-23 18:05:21 -07:00
.readthedocs.yaml update project files (#5457) 2024-04-07 10:24:40 -07:00
LICENSE.rst I just want the tutorial 2024-09-06 00:18:20 +01:00
pyproject.toml I just want the tutorial 2024-09-06 00:18:20 +01:00
README.rst I just want the tutorial 2024-09-06 00:18:20 +01: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
    $ . .venv/bin/activate

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 .


Run
---

.. code-block:: text

    $ flask --app flaskr init-db
    $ flask --app flaskr run --debug

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