All checks were successful
Release Tagging / release (push) Successful in 34s
Rust Build / Check (push) Successful in 49s
Rust Build / Test Suite (push) Successful in 1m18s
Rust Build / Rustfmt (push) Successful in 33s
Rust Build / Clippy (push) Successful in 52s
Rust Build / build (push) Successful in 1m30s
Rust Build / Check (pull_request) Successful in 58s
Rust Build / Test Suite (pull_request) Successful in 1m8s
Rust Build / Rustfmt (pull_request) Successful in 32s
Rust Build / Clippy (pull_request) Successful in 52s
Rust Build / build (pull_request) Successful in 1m19s
Reviewed-on: #31 Co-authored-by: phoenix <kundeng00@pm.me> Co-committed-by: phoenix <kundeng00@pm.me>
20 lines
337 B
Markdown
20 lines
337 B
Markdown
|
|
|
|
# Getting started
|
|
Take notice of the .env.sample file and create copies without the .sample in the name.
|
|
|
|
`.env.sample` -> `.env`
|
|
|
|
Ensure that all variables are populated and is correct.
|
|
|
|
## Docker
|
|
|
|
Build the images
|
|
```
|
|
docker compose build --ssh default auth_api
|
|
```
|
|
|
|
Bring it up
|
|
```
|
|
docker compose up -d --force-recreate auth_api
|
|
``` |