-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature/render-1-click-installer (#669)
* Added render.com one click installer
- Loading branch information
1 parent
b3acebf
commit 42752ce
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# This file describes the deployment for a render.com One Click app install | ||
# It builds the unified dockerfile, creates a DB connects the Flagsmith server to the DB | ||
|
||
services: | ||
# The Flagsmith Web Service | ||
- type: web | ||
name: flagsmith | ||
env: docker | ||
repo: https://github.com/flagsmith/flagsmith.git | ||
healthCheckPath: /health | ||
envVars: | ||
- key: DATABASE_URL | ||
fromDatabase: | ||
name: flagsmith-db | ||
property: connectionString | ||
- key: DJANGO_ALLOWED_HOSTS | ||
value: "*" | ||
|
||
databases: | ||
# The Flagsmith Postgres Database | ||
- name: flagsmith-db | ||
databaseName: flagsmith | ||
user: flagsmithuser | ||
ipAllowList: [] |