3 Commits

Author SHA1 Message Date
val
c93b5dbe5a chore: publish 1.3.0+v0.6.0 release 2026-03-12 16:06:06 +01:00
val
7029f841de typo 2026-03-12 16:05:21 +01:00
83c3efe4b9 Merge pull request 'Add requirements.txt' (#1) from linnealovespie/requirements into main
Reviewed-on: #1
2026-03-12 15:04:04 +00:00
3 changed files with 3 additions and 2 deletions

View File

@ -57,7 +57,7 @@ Now you are ready to go to create an instance (i.e. a plugin connected to a bot
### 3. installing further needed dependencies
If the plugin you want to install has any further python-dependencies, you can manually install them by creating a `requirement.txt`, copying it to `/tmp` in the app container (eg. with `abra cp`) and run `install_packages`
```
abra app cp -<APP-NAME> ./path/to/your/local/requirements.txt app:/tmp/
abra app cp <APP-NAME> ./path/to/your/local/requirements.txt app:/tmp/
abra app cmd <APP-NAME> app install_packages
```

View File

@ -38,7 +38,7 @@ services:
- "traefik.http.middlewares.${STACK_NAME}-redirectscheme.redirectscheme.scheme=https"
- "traefik.http.middlewares.${STACK_NAME}-redirectscheme.redirectscheme.permanent=true"
## When you're ready for release, run "abra recipe sync <name>" to set this
- "coop-cloud.${STACK_NAME}.version=1.2.0+v0.6.0"
- "coop-cloud.${STACK_NAME}.version=1.3.0+v0.6.0"
## Enable backups: https://docs.coopcloud.tech/maintainers/handbook/#how-do-i-configure-backuprestore
- "backupbot.backup=${ENABLE_BACKUPS:-true}"

1
release/1.3.0+v0.6.0 Normal file
View File

@ -0,0 +1 @@
it's now possible to install additional python-dependencies, info in docs