Compare commits
9 Commits
0.4.2+4.0.
...
main
Author | SHA1 | Date | |
---|---|---|---|
a8167754ba | |||
1fb3025d75 | |||
5a7febd5f3 | |||
d519279568 | |||
9adf6bbbd6 | |||
8822497e43 | |||
c1b1a6c0d7 | |||
b088285584 | |||
5150b0ea68 |
22
.drone.yml
22
.drone.yml
@ -14,6 +14,7 @@ steps:
|
|||||||
networks:
|
networks:
|
||||||
- proxy
|
- proxy
|
||||||
- internal
|
- internal
|
||||||
|
compose: "compose.yml"
|
||||||
environment:
|
environment:
|
||||||
DOMAIN: liberaforms.swarm-test.autonomic.zone
|
DOMAIN: liberaforms.swarm-test.autonomic.zone
|
||||||
STACK_NAME: liberaforms
|
STACK_NAME: liberaforms
|
||||||
@ -34,23 +35,24 @@ steps:
|
|||||||
LOG_LEVEL: INFO
|
LOG_LEVEL: INFO
|
||||||
LOG_DIR: /app/logs
|
LOG_DIR: /app/logs
|
||||||
GUNICORN_WORKERS: ${GUNICORN_WORKERS:-3}
|
GUNICORN_WORKERS: ${GUNICORN_WORKERS:-3}
|
||||||
SECRET_SECRET_KEY_VERSION: "v1"
|
SECRET_SECRET_KEY_VERSION: v1
|
||||||
SECRET_DB_PASSWORD_VERSION: "v1"
|
SECRET_DB_PASSWORD_VERSION: v1
|
||||||
SECRET_CRYPTO_KEY_VERSION: "v1"
|
SECRET_CRYPTO_KEY_VERSION: v1
|
||||||
ENTRYPOINT_VERSION: "v2"
|
ENTRYPOINT_VERSION: v2
|
||||||
NGINX_CONFIG_VERSION: "v1"
|
NGINX_CONFIG_VERSION: v1
|
||||||
|
PG_BACKUP_VERSION: v1
|
||||||
TYPE: liberaforms
|
TYPE: liberaforms
|
||||||
ADMIN_USER: 'you@example.com'
|
ADMIN_USER: you@example.com
|
||||||
DEFAULT_LANGUAGE: 'en'
|
DEFAULT_LANGUAGE: en
|
||||||
E2EE_MODE: ENABLED_BY_DEFAULT
|
E2EE_MODE: ENABLED_BY_DEFAULT
|
||||||
TOKEN_EXPIRATION: 604800
|
TOKEN_EXPIRATION: 604800
|
||||||
DEFAULT_TIMEZONE: "America/New_York"
|
DEFAULT_TIMEZONE: America/New_York
|
||||||
ENABLE_RSS_FEED: True
|
ENABLE_RSS_FEED: True
|
||||||
ENABLE_PROMETHEUS_METRICS: False
|
ENABLE_PROMETHEUS_METRICS: False
|
||||||
ENABLE_UPLOADS: True
|
ENABLE_UPLOADS: True
|
||||||
ENABLE_REMOTE_STORAGE: False
|
ENABLE_REMOTE_STORAGE: False
|
||||||
TOTAL_UPLOADS_LIMIT: "1 GB"
|
TOTAL_UPLOADS_LIMIT: 1 GB
|
||||||
DEFAULT_USER_UPLOADS_LIMIT: "50 MB"
|
DEFAULT_USER_UPLOADS_LIMIT: 50 MB
|
||||||
MAX_MEDIA_SIZE: 512000
|
MAX_MEDIA_SIZE: 512000
|
||||||
MAX_ATTACHMENT_SIZE: 1572864
|
MAX_ATTACHMENT_SIZE: 1572864
|
||||||
trigger:
|
trigger:
|
||||||
|
10
README.md
10
README.md
@ -5,7 +5,7 @@
|
|||||||
<!-- metadata -->
|
<!-- metadata -->
|
||||||
|
|
||||||
- **Category**: Apps
|
- **Category**: Apps
|
||||||
- **Status**: 5, wip
|
- **Status**: 5
|
||||||
- **Image**: [`liberaforms`](https://fung.uy/mycosystems/-/packages/container/liberaforms/), 1
|
- **Image**: [`liberaforms`](https://fung.uy/mycosystems/-/packages/container/liberaforms/), 1
|
||||||
- **Healthcheck**: Yes
|
- **Healthcheck**: Yes
|
||||||
- **Backups**: Yes
|
- **Backups**: Yes
|
||||||
@ -18,8 +18,12 @@
|
|||||||
## Quick start
|
## Quick start
|
||||||
|
|
||||||
- `abra app new liberaforms --secrets`
|
- `abra app new liberaforms --secrets`
|
||||||
- `abra app config <domain-name>`
|
- Set an admin email address `abra app config <domain-name>`
|
||||||
- `abra app deploy <domain-name>`
|
- `abra app deploy <domain-name>`
|
||||||
- Create tables `abra app cmd <domain-name> app setup_db` more info in [liberaforms docs](https://gitlab.com/liberaforms/liberaforms/-/blob/main/docs/docker.md?ref_type=heads#create-the-database)
|
- Create tables `abra app cmd <domain-name> forms setup_db` more info in [liberaforms docs](https://gitlab.com/liberaforms/liberaforms/-/blob/main/docs/docker.md?ref_type=heads#create-the-database)
|
||||||
|
|
||||||
|
## Admin account setup
|
||||||
|
|
||||||
|
Once liberaforms is deployed, go to the login screen by clicking the text in the top right. Next, click "forgot password" now you can fill in the email you set as your admin email and you will be prompted to set a password.
|
||||||
|
|
||||||
For more, see [`docs.liberaforms.org`](https://docs.liberaforms.org/).
|
For more, see [`docs.liberaforms.org`](https://docs.liberaforms.org/).
|
||||||
|
1
abra.sh
1
abra.sh
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
export ENTRYPOINT_VERSION=v2
|
export ENTRYPOINT_VERSION=v2
|
||||||
export NGINX_CONFIG_VERSION=v1
|
export NGINX_CONFIG_VERSION=v1
|
||||||
|
export PG_BACKUP_VERSION=v1
|
||||||
|
|
||||||
file_env() {
|
file_env() {
|
||||||
local var="$1"
|
local var="$1"
|
||||||
|
1
release/0.4.3+4.0.0
Normal file
1
release/0.4.3+4.0.0
Normal file
@ -0,0 +1 @@
|
|||||||
|
minor patch, no breaking changes expected.
|
Reference in New Issue
Block a user