-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from richard483/feature/payment
updated Dockerfile & .env.example
- Loading branch information
Showing
3 changed files
with
23 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,19 @@ | ||
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/8T-Auth" | ||
JWT_SECRET="ruby-sapphire" | ||
PORT=3000 | ||
RESET=1 | ||
JWT_SECRET= | ||
|
||
DIRECT_URL= | ||
DATABASE_URL= | ||
# DATABASE_URL="postgresql://postgres:postgres@localhost:5432/8T-Auth" | ||
GOOGLE_CLIENT_ID= | ||
GOOGLE_CLIENT_SECRET= | ||
FIREBASE_STORAGE_BUCKET= | ||
FIREBASE_API_KEY= | ||
BACK_END_URL=https://api-8-tech.koyeb.app/ | ||
|
||
XENDIT_SECRET_KEY=xnd_development_ | ||
XENDIT_URL=https://api.xendit.co | ||
XENDIT_AUTH= | ||
|
||
HOSTNAME=0.0.0.0 | ||
npm_package_version=4.0.1 |
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 |
---|---|---|
|
@@ -21,6 +21,8 @@ COPY . /usr/src/app | |
|
||
RUN npm ci | ||
|
||
RUN npm run migrate | ||
|
||
RUN npm run build | ||
|
||
EXPOSE 3000 | ||
|