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
- Host: GitHub
- URL: https://github.com/ralitsaterzieva/flask-explorer
- Owner: RalitsaTerzieva
- Created: 2024-11-20T10:36:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-21T11:31:06.000Z (over 1 year ago)
- Last Synced: 2025-01-21T15:31:35.955Z (over 1 year ago)
- Topics: flask, jinja-template, python, tailwindcss
- Language: CSS
- Homepage:
- Size: 2.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```