├── .backup-ignore ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── create_backup.sh ├── create_env.sh ├── create_swapfile.sh ├── docker-compose.yml ├── env_template ├── nginx.conf └── update.sh /.backup-ignore: -------------------------------------------------------------------------------- 1 | pgdata* 2 | backups* 3 | .git* 4 | client* 5 | nginx* 6 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [loomio] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loomio/loomio-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loomio/loomio-deploy/HEAD/README.md -------------------------------------------------------------------------------- /create_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loomio/loomio-deploy/HEAD/create_backup.sh -------------------------------------------------------------------------------- /create_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loomio/loomio-deploy/HEAD/create_env.sh -------------------------------------------------------------------------------- /create_swapfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loomio/loomio-deploy/HEAD/create_swapfile.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loomio/loomio-deploy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loomio/loomio-deploy/HEAD/env_template -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- 1 | client_max_body_size 200m; 2 | -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loomio/loomio-deploy/HEAD/update.sh --------------------------------------------------------------------------------