Skip to content

justin-jiajia/notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notes

介绍

一个小笔记应用。使用Flask编写,demo ,欢迎使用!

安装教程

1.安装依赖

pip install -r requirements.txt

2.写.env文件

vim .env

# secret随机字符,请将“strong string"替换为随机字符
SECRET_KEY=strong string 
# 数据库地址
# MySql: mysql://username:password@host/databasename
# Sqlite: sqlite:////home/ubuntu/notes.db
SQLALCHEMY_DATABASE_URI = sqlite:////home/ubuntu/notes.db

3.初始化数据库

python -m flask initdb

4.启动!

通过Gunicorn(仅支持Linux)
gunicorn -b 0.0.0.0:8010 -w 4 wsgi:app
通过内置开发服务器(仅开发!!)
flask run

感谢 不分先后

  1. Logo来自 FlatIconDesign
  2. CDN使用 字节跳动静态资源公共库