-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add db-migrate package with wiring, rationale and instructions
- Loading branch information
Francis Duvivier
committed
Nov 27, 2024
1 parent
c700eca
commit b397152
Showing
7 changed files
with
588 additions
and
75 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"defaultEnv": "pg-from-env", | ||
"pg-from-env": { | ||
"driver": "pg", | ||
"host": { "ENV": "POSTGRES_HOST" }, | ||
"database": { "ENV": "POSTGRES_DB" }, | ||
"user": { "ENV": "POSTGRES_USER" }, | ||
"password": { "ENV": "POSTGRES_PASSWORD" }, | ||
"port": "5432", | ||
"schema": "badgehub" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"description": "This package.json file is picked up by db-migrate and that is needed because the js files generated by db-migrate are commonjs", | ||
"type": "commonjs" | ||
} |
Oops, something went wrong.