more changes

This commit is contained in:
benbot 2023-10-25 04:48:36 -04:00
parent beaf92f7c4
commit a3a4af7965
18 changed files with 165 additions and 24 deletions

View file

@ -11,6 +11,10 @@ config :ezcontainer_railway,
ecto_repos: [EzcontainerRailway.Repo],
generators: [timestamp_type: :utc_datetime]
# Configure your database
config :ezcontainer_railway, EzcontainerRailway.Repo,
database: "./db/db.sqlite3"
# Configures the endpoint
config :ezcontainer_railway, EzcontainerRailwayWeb.Endpoint,
url: [host: "localhost"],

View file

@ -2,13 +2,7 @@ import Config
# Configure your database
config :ezcontainer_railway, EzcontainerRailway.Repo,
username: "postgres",
password: "postgres",
hostname: "localhost",
database: "ezcontainer_railway_dev",
stacktrace: true,
show_sensitive_data_on_connection_error: true,
pool_size: 10
database: "./db/db.sqlite3"
# For development, we disable any cache and enable
# debugging and code reloading.