48 lines
963 B
Markdown
48 lines
963 B
Markdown
# git.limbosolutions.com
|
|
|
|
Welcome to public repository of my [Git Server](https://git.limbosolutions.com)
|
|
|
|
Using [gitea](https://git.limbosolutions.com/kb/gitea) as git server.
|
|
|
|
- [Deploy](#deploy)
|
|
- [App Deploy](#app-deploy)
|
|
- [Continuous Deploy](#continuous-deploy)
|
|
- [Infra Deploy](#infra-deploy)
|
|
- [Deploy all](#deploy-all)
|
|
- [Backups](#backups)
|
|
|
|
## Deploy
|
|
|
|
### App Deploy
|
|
|
|
[Requires environment variables](./manifests/app/cronjobs/backups/.env.example).
|
|
*Can be set creating file ./manifests/app/cronjobs/backups/.env with values.*
|
|
|
|
```bash
|
|
./deploy-scripts/apply-app.sh
|
|
```
|
|
|
|
- [Manifests](/manifests/infra)
|
|
|
|
### Continuous Deploy
|
|
|
|
Executes [App Deploy](#app-deploy) using an [Gitea workflow](./.gitea/workflows/app-deploy.yaml).
|
|
|
|
### Infra Deploy
|
|
|
|
```bash
|
|
./deploy-scripts/apply-infra.sh
|
|
```
|
|
|
|
- [Manifests](/manifests/app)
|
|
|
|
### Deploy all
|
|
|
|
```bash
|
|
./deploy-scripts/apply.sh
|
|
```
|
|
|
|
## Backups
|
|
|
|
for more information [check readme](./docs/backups.md).
|