1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
Run the demo application
========================
Type these commands in the terminal:
.. code-block:: bash
$ git clone https://github.com/helloflask/bootstrap-flask.git
$ cd bootstrap-flask
$ pip install -r requirements/examples.txt
$ cd examples
Then based on the Bootstrap version you want to use to run the application.
Bootstrap 4:
.. code-block:: bash
$ python bootstrap4/app.py
Bootstrap 5:
.. code-block:: bash
$ python bootstrap5/app.py
Now go to http://localhost:5000.
Live demos of the latest release are:
- `Examples with Bootstrap 4 <http://173.212.198.217/>`_
- `Examples with Bootstrap 5 <http://173.212.227.186/>`_
Overview of icons
-----------------
The example applications contain a page called icons which gives an overview
of all icons supported by this version of Bootstrap-Flask. This overview can be
used for testing purposes but is also offline documentation on the icons
available.
When Bootstrap-Flask updates the icon file, the overview page can be upgraded
with:
.. code-block:: bash
$ python3 update-icons.py
|