├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── assets ├── favicon.ico └── index-3437a8e9.js ├── main.py ├── readme.md ├── requirements.txt ├── settings.py └── templates └── index.html /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/index-3437a8e9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/assets/index-3437a8e9.js -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/main.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/settings.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vastsa/AILink/HEAD/templates/index.html --------------------------------------------------------------------------------