├── requirements.txt ├── static ├── logo.png ├── styles.css └── styles_index.css ├── templates ├── results.html └── index.html ├── README.md ├── .gitignore └── app.py /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamikip/GitGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamikip/GitGPT/HEAD/static/logo.png -------------------------------------------------------------------------------- /templates/results.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |{{ repo.description or 'No description available.' }}
19 |⭐: {{ repo.stars }}
20 |Language: {{ repo.language }}
21 |No repositories found.
25 | {% endif %} 26 |
15 |
16 |