update demo note
This commit is contained in:
parent
27ebe99b36
commit
670f8c7a53
|
@ -50,6 +50,7 @@ builder:
|
||||||
env:
|
env:
|
||||||
clear:
|
clear:
|
||||||
PORT: 4000
|
PORT: 4000
|
||||||
|
DATABASE_HOST: futureporn-db
|
||||||
secret:
|
secret:
|
||||||
- DATABASE_PASSWORD
|
- DATABASE_PASSWORD
|
||||||
|
|
||||||
|
|
|
@ -62,6 +62,7 @@ services:
|
||||||
environment:
|
environment:
|
||||||
MIX_ENV: dev
|
MIX_ENV: dev
|
||||||
PORT: "4000"
|
PORT: "4000"
|
||||||
|
DATABASE_HOSTNAME: db
|
||||||
env_file:
|
env_file:
|
||||||
- .kamal/secrets.development
|
- .kamal/secrets.development
|
||||||
ports:
|
ports:
|
||||||
|
|
|
@ -4,7 +4,7 @@ import Config
|
||||||
config :bright, Bright.Repo,
|
config :bright, Bright.Repo,
|
||||||
username: "postgres",
|
username: "postgres",
|
||||||
password: "#{System.get_env("DATABASE_PASSWORD")}",
|
password: "#{System.get_env("DATABASE_PASSWORD")}",
|
||||||
hostname: "futureporn-db",
|
hostname: "#{System.get_env("DATABASE_HOSTNAME")}",
|
||||||
database: "bright",
|
database: "bright",
|
||||||
stacktrace: true,
|
stacktrace: true,
|
||||||
show_sensitive_data_on_connection_error: true,
|
show_sensitive_data_on_connection_error: true,
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<div class="section">
|
<div class="section">
|
||||||
|
|
||||||
<i>
|
<i>
|
||||||
<p>This is a pre-alpha test of Futureporn version 2.0</p>
|
<p>This is a development pre-alpha preview pre-flight test sample demo of Futureporn version 2.0</p>
|
||||||
<p>Work is in progress, check back each week for updates.</p>
|
<p>Work is in progress, check back each week for updates.</p>
|
||||||
</i>
|
</i>
|
||||||
<a class="mt-5 button is-primary" href={~p"/archive"}>Streams Archive</a>
|
<a class="mt-5 button is-primary" href={~p"/archive"}>Streams Archive</a>
|
||||||
|
|
Loading…
Reference in New Issue