https://github.com/ralitsaterzieva/flasktalk
Flask based blog application
https://github.com/ralitsaterzieva/flasktalk
blog bootstrap bootstrap5 flask flask-login flask-migrate flask-sqlalchemy jinja python sqlalchemy
Last synced: about 2 months ago
JSON representation
Flask based blog application
- Host: GitHub
- URL: https://github.com/ralitsaterzieva/flasktalk
- Owner: RalitsaTerzieva
- Created: 2024-11-27T12:17:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-01T14:52:33.000Z (over 1 year ago)
- Last Synced: 2025-08-24T07:26:59.993Z (10 months ago)
- Topics: blog, bootstrap, bootstrap5, flask, flask-login, flask-migrate, flask-sqlalchemy, jinja, python, sqlalchemy
- Language: Python
- Homepage:
- Size: 108 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FlaskTalk Application
FlaskTalk is a dynamic web application built to practice creating and managing blog posts, leveraging Flask and various libraries. This project integrates Flask, SQLAlchemy, Flask-Migrate, WTForms, and SQLite to offer a platform for users to post, edit, and manage content.
---
## Installation
### Prerequisites
Ensure you have Python (3.7 or higher) and `pip` installed on your machine.
### Steps
1. Clone the repository:
```bash
git clone https://github.com/RalitsaTerzieva/flasktalk
cd flasktalk
2. Create and activate a virtual environment:
```bash
python -m venv venv
source venv/bin/activate
4. Install the dependencies:
```bash
pip install -r requirements.txt
6. Initialize the database:
```bash
export FLASK_APP=app.py
flask db init
flask db migrate -m "Initial migration"
flask db upgrade
8. Run the application:
```bash
flask run