文件名称:notes:用于存储笔记的基于 Python 的 webapp
文件大小:11KB
文件格式:ZIP
更新时间:2024-07-04 06:34:37
JavaScript
笔记 用于存储笔记的基于 Python 的 webapp 回购分为前端和后端部分 示例部署 前端代码放置在 /var/www/notes/ 中,并创建一个配置文件为 /etc/nginx/sites-available/notes。 然后将其符号链接到 /etc/nginx/sites-enabled/ 示例配置: server { listen 80; ## listen for ipv4; this line is default and implied root /var/www/notes/; index index.html index.htm; server_name notes.example.com www.notes.example.com; try_files $uri $uri/ /404.html; loca
【文件预览】:
notes-master
----front()
--------index.html(2KB)
--------client.js(14KB)
--------style.css(4KB)
----backend()
--------db.py(4KB)
--------helpers.py(1005B)
--------notes_backend.py(2KB)
--------notes.db(2KB)
--------interface.py(5KB)
----README.md(1KB)
----.gitignore(6B)