https://github.com/pymike00/codingwiz-dev
:brain: A lightweight blog app built with Python and Flask. Source Code from my Python and Flask Web Development Course (Lang: Italian)
https://github.com/pymike00/codingwiz-dev
flask flask-app flask-application flask-blog flask-sqlalchemy flask-web python
Last synced: 6 months ago
JSON representation
:brain: A lightweight blog app built with Python and Flask. Source Code from my Python and Flask Web Development Course (Lang: Italian)
- Host: GitHub
- URL: https://github.com/pymike00/codingwiz-dev
- Owner: pymike00
- Created: 2019-05-30T09:08:01.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T23:40:59.000Z (about 2 years ago)
- Last Synced: 2024-12-24T07:51:22.883Z (6 months ago)
- Topics: flask, flask-app, flask-application, flask-blog, flask-sqlalchemy, flask-web, python
- Language: HTML
- Homepage: https://www.udemy.com/course/crea-il-tuo-blog-personale-con-python-e-flask/?referralCode=1390BEC31EC0D00A5854
- Size: 84 KB
- Stars: 9
- Watchers: 0
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CodingWiz.dev
A lightweight blog app built with Python and Flask. Source Code from my Python and Flask Web Development Course (Lang: Italian)
### How To Install Locally
```
git clone https://github.com/pymike00/codingwiz-dev.git
cd codingwiz-dev
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
flask db upgrade
flask shell
from blog.models import User
u = User(username="admin", email="[email protected]")
u.set_password_hash("your-secret-psw")
db.session.add(u)
db.session.commit()
quit()
flask run
```### Few things you might want to add/change if you intend to actually use the app:
- Error Logging
- Rate Limiting
- Markdown Preview
- Whatever else you want! The theme is based on Bootstrap 4, so it's easily adaptable.