├── .dockerignore ├── .env-example ├── .gitignore ├── Dockerfile ├── Procfile ├── README.md ├── index.js ├── package.json └── renovate.json /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .gitignore 3 | renovate.json 4 | README.md 5 | -------------------------------------------------------------------------------- /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTheOne/watch-willhaben/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTheOne/watch-willhaben/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: npm run start 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTheOne/watch-willhaben/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTheOne/watch-willhaben/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTheOne/watch-willhaben/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTheOne/watch-willhaben/HEAD/renovate.json --------------------------------------------------------------------------------