An open API service indexing awesome lists of open source software.

https://github.com/ralitsaterzieva/flask-explorer

Flask based application
https://github.com/ralitsaterzieva/flask-explorer

flask jinja-template python tailwindcss

Last synced: 3 months ago
JSON representation

Flask based application

Awesome Lists containing this project

README

          

**Flask Explorer**

Flask Explorer is a beginner-friendly Flask application designed to help you learn and explore the features of the Flask web framework. This project is for educational purposes and serves as a sandbox for testing Flask concepts and building foundational skills.

**Requirements**

Make sure you have the following installed:

- Python 3.11 or higher

- Virtual environment (venv) setup

- The necessary Python packages (listed in requirements.txt)

**Installation**

1. Clone this repository:

```bash
git clone
cd flask-explorer
```

2. Create and activate a virtual environment:

```bash
python3 -m venv venv
source venv/bin/activate
```

3. Install the required packages:
```bash
pip install -r requirements.txt
```

4. Run the application:
```bash
flask run
```