You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deployment.md
+3-7Lines changed: 3 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ But you have to configure a couple things first. 🤓
12
12
13
13
* Have a remote server ready and available.
14
14
* Configure the DNS records of your domain to point to the IP of the server you just created.
15
-
* Configure a wildcard subdomain for your domain, so that you can have multiple subdomains for different services, e.g. `*.fastapi-project.example.com`. This will be useful for accessing different components, like `traefik.fastapi-project.example.com`, `pgadmin.fastapi-project.example.com`, etc. And also for `staging`, like `staging.fastapi-project.example.com`, `staging.pgadmin.fastapi-project.example.com`, etc.
15
+
* Configure a wildcard subdomain for your domain, so that you can have multiple subdomains for different services, e.g. `*.fastapi-project.example.com`. This will be useful for accessing different components, like `traefik.fastapi-project.example.com`, `adminer.fastapi-project.example.com`, etc. And also for `staging`, like `staging.fastapi-project.example.com`, `staging.adminer.fastapi-project.example.com`, etc.
16
16
* Install and configure [Docker](https://docs.docker.com/engine/install/) on the remote server (Docker Engine, not Docker Desktop).
17
17
18
18
## Public Traefik
@@ -141,8 +141,6 @@ You can set several variables, like:
141
141
*`POSTGRES_PASSWORD`: The Postgres password.
142
142
*`POSTGRES_USER`: The Postgres user, you can leave the default.
143
143
*`POSTGRES_DB`: The database name to use for this application. You can leave the default of `app`.
144
-
*`PGADMIN_DEFAULT_EMAIL`: The default email for pgAdmin.
145
-
*`PGADMIN_DEFAULT_PASSWORD`: The default password for pgAdmin.
146
144
*`SENTRY_DSN`: The DSN for Sentry, if you are using it.
147
145
*`FLOWER_BASIC_AUTH`: The HTTP Basic Auth for Flower, like `admin:changethis`.
148
146
@@ -253,8 +251,6 @@ The current Github Actions workflows expect these secrets:
253
251
*`EMAILS_FROM_EMAIL`
254
252
*`FIRST_SUPERUSER`
255
253
*`FIRST_SUPERUSER_PASSWORD`
256
-
*`PGADMIN_DEFAULT_EMAIL`
257
-
*`PGADMIN_DEFAULT_PASSWORD`
258
254
*`POSTGRES_PASSWORD`
259
255
*`SECRET_KEY`
260
256
@@ -283,7 +279,7 @@ Backend API docs: `https://fastapi-project.example.com/docs`
283
279
284
280
Backend API base URL: `https://fastapi-project.example.com/api/`
0 commit comments