├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── config.yml ├── dependabot.yml └── workflows │ ├── main.yml │ └── manual.yml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── examples ├── .gitignore └── docker-compose.yml └── install ├── app ├── client │ └── dist │ │ └── config-dist.js ├── config │ └── custom-environment-variables.json ├── install.js └── server.js ├── assets ├── functions │ └── 10-formio-api └── templates │ ├── config.template.js │ └── project.default.json └── etc ├── cont-init.d └── 10-formio-api └── services.available └── 10-formio-api └── run /.dockerignore: -------------------------------------------------------------------------------- 1 | examples/ 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [tiredofit] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/README.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/examples/docker-compose.yml -------------------------------------------------------------------------------- /install/app/client/dist/config-dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/install/app/client/dist/config-dist.js -------------------------------------------------------------------------------- /install/app/config/custom-environment-variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/install/app/config/custom-environment-variables.json -------------------------------------------------------------------------------- /install/app/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/install/app/install.js -------------------------------------------------------------------------------- /install/app/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/install/app/server.js -------------------------------------------------------------------------------- /install/assets/functions/10-formio-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/install/assets/functions/10-formio-api -------------------------------------------------------------------------------- /install/assets/templates/config.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/install/assets/templates/config.template.js -------------------------------------------------------------------------------- /install/assets/templates/project.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/install/assets/templates/project.default.json -------------------------------------------------------------------------------- /install/etc/cont-init.d/10-formio-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/install/etc/cont-init.d/10-formio-api -------------------------------------------------------------------------------- /install/etc/services.available/10-formio-api/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiredofit/docker-formio-api/HEAD/install/etc/services.available/10-formio-api/run --------------------------------------------------------------------------------