All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3s
60 lines
1.1 KiB
Markdown
60 lines
1.1 KiB
Markdown
# Introduction
|
|
|
|
Welcome to the source code for my website! Please contact me if you would like to collaborate and thank you for visiting.
|
|
|
|
# Future ideas
|
|
|
|
- Rust to wasm
|
|
- ML for chatboards
|
|
- Cache requests
|
|
- Design more webpages
|
|
- Calendar to show radio times
|
|
- Nice smooth function background and transitions
|
|
- Design shrines
|
|
- Redis (not really but practical experience)
|
|
|
|
# .env
|
|
|
|
These environment variables are found in the `.env` file. The use of environment variables can be found by reading the code so the security of the variable names are not significant.
|
|
|
|
```
|
|
|
|
POSTGRES_USER=
|
|
POSTGRES_PASSWORD=
|
|
POSTGRES_DB=
|
|
POSTGRES_PORT=
|
|
POSTGRES_HOST=
|
|
|
|
GITEA_HOST=
|
|
GITEA_PORT=
|
|
POSTGRES_GITEA_DB=
|
|
|
|
GITEA_RUNNER_HOST=
|
|
GITEA_RUNNER_NAME=
|
|
GITEA_RUNNER_REGISTRATION_TOKEN=
|
|
|
|
BACKEND_PORT=
|
|
BACKEND_HOST=
|
|
BACKEND_SECRET=
|
|
BACKEND_ENDPOINT=
|
|
|
|
OBSIDIAN_DIR=
|
|
|
|
SPOTIFY_CLIENT_ID=
|
|
SPOTIFY_CLIENT_SECRET=
|
|
SPOTIFY_REDIRECT_URI=
|
|
SPOTIFY_AUTH_STATE=
|
|
|
|
ICECAST_SOURCE_PASSWORD=
|
|
ICECAST_RELAY_PASSWORD=
|
|
ICECAST_ADMIN_USER=
|
|
ICECAST_ADMIN_PASSWORD=
|
|
ICECAST_HOST=
|
|
ICECAST_PORT=
|
|
ICECAST_MOUNT=
|
|
|
|
DOMAIN=
|
|
EMAIL=
|
|
|
|
```
|