Skip to content

Commit d7271a5

Browse files
committed
Update README.md, add Setup Guide
1 parent 8d5fc07 commit d7271a5

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

README.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,28 @@
1-
# flask-blog
2-
Source Code del mio Corso 2019 "Crea il Tuo Blog Personale con Python e Flask"
1+
# CodingWiz.dev
2+
A lightweight blog app built with Python and Flask. Source Code from my Python and Flask Web Development Course (Lang: Italian)
3+
4+
<br>
5+
6+
### How To Install Locally
7+
```
8+
git clone https://github.com/pymike00/codingwiz-dev.git
9+
cd codingwiz-dev
10+
python3 -m venv venv
11+
source venv/bin/activate
12+
pip install -r requirements.txt
13+
flask db upgrade
14+
flask shell
15+
u = User(username="admin", email="email@provider.com")
16+
u.set_password_hash("your-secret-psw")
17+
db.session.commit()
18+
db.session.add(u)
19+
quit()
20+
flask run
21+
```
22+
<br>
23+
24+
### Few things you might want to add/change if you intend to actually use the app:
25+
- Error Logging
26+
- Rate Limiting
27+
- Markdown Preview
28+
- Whatever else you want! The theme is based on Bootstrap 4, so it's easily adaptable.

0 commit comments

Comments
 (0)