This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
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.
Sirsimon04/feat/285 deploy server (#286)
* feat(server): 285 add deployment * docs(server): 285 update readme of server
- Loading branch information
1 parent
e7ea3c1
commit d0bb034
Showing
10 changed files
with
7,558 additions
and
88 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,7 +1,21 @@ | ||
{ | ||
"requires": { | ||
"[production]": { | ||
"auth": { | ||
"impl": "srv/auth-service/custom-auth.js" | ||
} | ||
}, | ||
"auth": { | ||
"impl": "srv/auth-service/custom-auth.ts" | ||
}, | ||
"db": { | ||
"kind": "sqlite", | ||
"credentials": { | ||
"database": ":memory:" | ||
} | ||
} | ||
}, | ||
"features": { | ||
"in_memory_db": true | ||
} | ||
} |
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,11 @@ | ||
# Getting Started | ||
Look into the [Onboarding in the Wiki](https://github.com/SE-TINF22B2/G1-CashCompass/wiki/Onboarding-Steps) for getting started and the folder structures. | ||
|
||
## Deployment | ||
|
||
```console | ||
npm run build | ||
mbt build -t gen --mtar mta.tar | ||
cf deploy gen/mta.tar | ||
``` | ||
|
Oops, something went wrong.