├── .do └── deploy.template.yaml ├── .dockerignore ├── .github └── workflows │ └── multireg.yml ├── .gitignore ├── Dockerfile ├── Dockerfile.legacy ├── README.md ├── docker-compose.yaml ├── env.js ├── flightcontrol.json ├── package.json ├── scripts └── postinstall.js └── start.sh /.do/deploy.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/.do/deploy.template.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/multireg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/.github/workflows/multireg.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.data.json 3 | *ignore* -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/Dockerfile.legacy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/env.js -------------------------------------------------------------------------------- /flightcontrol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/flightcontrol.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/package.json -------------------------------------------------------------------------------- /scripts/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/scripts/postinstall.js -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wa/wa-automate-docker/HEAD/start.sh --------------------------------------------------------------------------------