We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1894d89 commit 7f93919Copy full SHA for 7f93919
.gitignore
@@ -21,6 +21,8 @@ env/
21
22
# Environment
23
.env
24
+.env.*
25
+!.env.example
26
27
# Testing
28
htmlcov/
@@ -37,7 +39,8 @@ redis_data/
37
39
.DS_Store
38
40
Thumbs.db
41
-# Node (frontend)
-frontend/node_modules/
42
+# Node
43
+node_modules/
44
+
45
+# Frontend
46
frontend/dist/
-frontend/.env.local
alembic.ini
@@ -1,7 +1,7 @@
1
[alembic]
2
script_location = backend/migrations
3
prepend_sys_path = .
4
-sqlalchemy.url = postgresql://solace:solace@localhost:5432/solace
+sqlalchemy.url = driver://user:pass@localhost/dbname
5
6
[loggers]
7
keys = root,sqlalchemy,alembic
0 commit comments