├── .dockerignore ├── .github └── workflows │ └── docker-image.yml ├── Dockerfile ├── README.md ├── main.py ├── requirements.txt ├── static ├── script.js └── style.css └── templates └── chat.html /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | Dockerfile 3 | README.md 4 | -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slippersheepig/chatgpt-web/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slippersheepig/chatgpt-web/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slippersheepig/chatgpt-web/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slippersheepig/chatgpt-web/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | revchatgpt 2 | python-dotenv 3 | flask 4 | gunicorn 5 | gevent 6 | -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slippersheepig/chatgpt-web/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slippersheepig/chatgpt-web/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slippersheepig/chatgpt-web/HEAD/templates/chat.html --------------------------------------------------------------------------------