├── .gitignore ├── LICENSE ├── README.md ├── assets └── screenshot.png ├── backend ├── __init__.py └── app.py ├── index.html ├── main.js ├── package.json ├── pydist └── app ├── renderer.js ├── requirements.txt └── styles.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/backend/app.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/package.json -------------------------------------------------------------------------------- /pydist/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/pydist/app -------------------------------------------------------------------------------- /renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/renderer.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaejaywoo/HireGPT/HEAD/styles.css --------------------------------------------------------------------------------