-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
exploration/dps/ Include adminer to clean template using Sqlite #1549
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,14 +13,14 @@ FRONTEND_HOST=http://localhost:5173 | |
# Environment: local, staging, production | ||
ENVIRONMENT=local | ||
|
||
PROJECT_NAME="Full Stack FastAPI Project" | ||
STACK_NAME=full-stack-fastapi-project | ||
PROJECT_NAME=Service Data Platform | ||
STACK_NAME=sdp-project | ||
|
||
# Backend | ||
BACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,https://localhost,https://localhost:5173,http://localhost.tiangolo.com" | ||
SECRET_KEY=changethis | ||
BACKEND_CORS_ORIGINS=["http://localhost:5173"] | ||
SECRET_KEY=changeme123 | ||
[email protected] | ||
FIRST_SUPERUSER_PASSWORD=changethis | ||
FIRST_SUPERUSER_PASSWORD=changeme123 | ||
|
||
# Emails | ||
SMTP_HOST= | ||
|
@@ -31,15 +31,18 @@ SMTP_TLS=True | |
SMTP_SSL=False | ||
SMTP_PORT=587 | ||
|
||
# Postgres | ||
POSTGRES_SERVER=localhost | ||
POSTGRES_PORT=5432 | ||
POSTGRES_DB=app | ||
POSTGRES_USER=postgres | ||
POSTGRES_PASSWORD=changethis | ||
# Postgres (commented out as we're using SQLite) | ||
# POSTGRES_SERVER=localhost | ||
# POSTGRES_PORT=5432 | ||
# POSTGRES_DB=app | ||
# POSTGRES_USER=postgres | ||
# POSTGRES_PASSWORD=changethis | ||
|
||
SENTRY_DSN= | ||
|
||
# Configure these with your own Docker registry images | ||
DOCKER_IMAGE_BACKEND=backend | ||
DOCKER_IMAGE_FRONTEND=frontend | ||
|
||
# SQLite configuration | ||
SQLITE_DB=./sqlite.db |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the env file from your commit.
Especially the change of the PROJECT_NAME or the STACK_NAME is a clear indicator that you've made a mistake here.