Last active
April 6, 2023 16:06
-
-
Save damonvjanis/92d628d23c0cbc92443175c5c6fff050 to your computer and use it in GitHub Desktop.
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
import Config | |
config :my_app, MyApp.Repo, | |
username: "postgres", | |
password: "<the random password you generated>", | |
database: "my_app", | |
hostname: "localhost", | |
pool_size: 10 | |
config :my_app, MyAppWeb.Endpoint, | |
secret_key_base: "<run mix phx.gen.secret and paste the value here>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment