1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00

Compare commits

...

5 Commits

Author SHA1 Message Date
fb295cd706
Update nixpacks.toml
Woops!
2025-01-04 13:06:16 -06:00
7ebd767ba7
Update nixpacks.toml 2025-01-04 12:40:51 -06:00
922b39e5b4
Update nixpacks.toml
Add nodejs
2025-01-04 12:39:02 -06:00
977828a75f
Update nixpacks.toml
Install Yarn
2025-01-04 12:27:10 -06:00
08b22bff50
Update prod.exs
Turn off SSL for the database connection.
2025-01-04 12:19:51 -06:00
2 changed files with 2 additions and 2 deletions

View File

@ -19,5 +19,5 @@ config :chess, Chess.Repo,
adapter: Ecto.Adapters.Postgres,
url: System.get_env("DATABASE_URL"),
database: "",
ssl: true,
ssl: false,
pool_size: 1

View File

@ -1,5 +1,5 @@
[phases.install]
aptPkgs = ["...", "build-essential"]
aptPkgs = ["...", "yarnpkg", "build-essential"]
[phases.build]
cmds = ["mix compile", "mix ecto.setup", "pushd assets && yarn install && popd"]