├── .github └── workflows │ └── push.yml ├── Dockerfile ├── README.md └── files ├── entrypoint.sh ├── package.json ├── server.js └── web.js /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fscarmen2/Render/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fscarmen2/Render/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fscarmen2/Render/HEAD/README.md -------------------------------------------------------------------------------- /files/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fscarmen2/Render/HEAD/files/entrypoint.sh -------------------------------------------------------------------------------- /files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fscarmen2/Render/HEAD/files/package.json -------------------------------------------------------------------------------- /files/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fscarmen2/Render/HEAD/files/server.js -------------------------------------------------------------------------------- /files/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fscarmen2/Render/HEAD/files/web.js --------------------------------------------------------------------------------