File tree Expand file tree Collapse file tree 1 file changed +28
-2
lines changed Expand file tree Collapse file tree 1 file changed +28
-2
lines changed Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments