This repository was archived by the owner on Mar 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- release : POOL_SIZE=2 mix ecto.migrate
1+ release : cd $HOME && POOL_SIZE=2 mix do ecto.migrate
22web : NODE=$( mix phx.gen.secret) mix phx.server
Original file line number Diff line number Diff line change 5757 "url" : " https://github.com/HashNuke/heroku-buildpack-elixir"
5858 },
5959 {
60- "url" : " https://github.com/gjaldon/heroku -buildpack-phoenix-static"
60+ "url" : " https://github.com/gigalixir/gigalixir -buildpack-phoenix-static"
6161 }
6262 ]
6363}
Original file line number Diff line number Diff line change 1- use Mix. Config
1+ import Config
22
33config :chat_api ,
44 environment: Mix . env ( ) ,
Original file line number Diff line number Diff line change 1- use Mix. Config
1+ import Config
22
33database_url = System . get_env ( "DATABASE_URL" ) || "ecto://postgres:postgres@localhost/chat_api_dev"
44
Original file line number Diff line number Diff line change 1- use Mix. Config
1+ import Config
22
33database_url = System . get_env ( "DATABASE_URL" ) || "ecto://postgres:postgres@localhost/chat_api_dev"
44pool_size = String . to_integer ( System . get_env ( "POOL_SIZE" ) || "10" )
Original file line number Diff line number Diff line change 1- use Mix. Config
1+ import Config
22
33# Configure your database
44#
You can’t perform that action at this time.
0 commit comments