Skip to content

Commit 07cfd16

Browse files
feat: migrate to fasthtml + pony (#1)
* feat: mvp * refactor: table view for restaurants * fix: add restaurant styling * feat: toasts * chore: remove deps
1 parent 534d6f4 commit 07cfd16

File tree

8 files changed

+746
-1739
lines changed

8 files changed

+746
-1739
lines changed

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# ETC
2-
lunch.db
3-
scratch*.*
4-
auth/
52
.htpasswd
63
.ruff_cache
4+
.sesskey
5+
auth/
6+
lunch.db
7+
scratch*.*
78

89
# Byte-compiled / optimized / DLL files
910
__pycache__/

.vscode/settings.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22
"[python]": {
33
"editor.insertSpaces": true,
44
"editor.tabSize": 4,
5+
"editor.codeActionsOnSave": {
6+
"source.organizeImports": "explicit",
7+
"source.fixAll": "explicit"
8+
}
59
},
6-
"python.testing.pytestArgs": [
7-
"."
8-
],
9-
// https://github.com/astral-sh/ruff-vscode
10-
"python.analysis.ignore": [
11-
"*"
12-
],
10+
"python.testing.pytestArgs": [
11+
"tests"
12+
],
13+
"python.testing.unittestEnabled": false,
14+
"python.testing.pytestEnabled": true,
15+
// https://github.com/astral-sh/ruff-vscode
16+
"python.analysis.ignore": [
17+
"*"
18+
]
1319
}

0 commit comments

Comments
 (0)