├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── github-dependents-info.yml │ └── main.yml ├── .prettierrc ├── LICENSE ├── README.md ├── action.yml ├── docs └── github-dependents-info.md ├── funding.json ├── index.js ├── package.json ├── scripts ├── setup.js ├── test-action.js └── test.js └── tests ├── test-1 ├── .env ├── Procfile ├── index.py └── requirements.txt ├── test-2 ├── public_html │ └── index.html └── static.json ├── test-3 ├── Dockerfile ├── data.json ├── docker-compose.yml ├── index.py └── requirements.txt └── test-4 ├── index.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/github-dependents-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/.github/workflows/github-dependents-info.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": false 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/action.yml -------------------------------------------------------------------------------- /docs/github-dependents-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/docs/github-dependents-info.md -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/funding.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/package.json -------------------------------------------------------------------------------- /scripts/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/scripts/setup.js -------------------------------------------------------------------------------- /scripts/test-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/scripts/test-action.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/scripts/test.js -------------------------------------------------------------------------------- /tests/test-1/.env: -------------------------------------------------------------------------------- 1 | HELLO=world 2 | WORLD=hello -------------------------------------------------------------------------------- /tests/test-1/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn index:app -------------------------------------------------------------------------------- /tests/test-1/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/tests/test-1/index.py -------------------------------------------------------------------------------- /tests/test-1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/tests/test-1/requirements.txt -------------------------------------------------------------------------------- /tests/test-2/public_html/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test-2/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/tests/test-2/static.json -------------------------------------------------------------------------------- /tests/test-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/tests/test-3/Dockerfile -------------------------------------------------------------------------------- /tests/test-3/data.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/test-3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/tests/test-3/docker-compose.yml -------------------------------------------------------------------------------- /tests/test-3/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/tests/test-3/index.py -------------------------------------------------------------------------------- /tests/test-3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/tests/test-3/requirements.txt -------------------------------------------------------------------------------- /tests/test-4/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/tests/test-4/index.py -------------------------------------------------------------------------------- /tests/test-4/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhileshNS/heroku-deploy/HEAD/tests/test-4/requirements.txt --------------------------------------------------------------------------------