https://github.com/batou9150/gitlabui
Flask App over Gitlab Api to browse projects tags and to search into repository files
https://github.com/batou9150/gitlabui
flask gitlab
Last synced: 2 months ago
JSON representation
Flask App over Gitlab Api to browse projects tags and to search into repository files
- Host: GitHub
- URL: https://github.com/batou9150/gitlabui
- Owner: batou9150
- Created: 2021-05-28T13:56:43.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-12T13:54:54.000Z (over 4 years ago)
- Last Synced: 2025-09-14T15:57:13.950Z (10 months ago)
- Topics: flask, gitlab
- Language: HTML
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gitlabui
[](https://hub.docker.com/r/batou9150/gitlabui/)
[](https://hub.docker.com/r/batou9150/gitlabui/)
[](https://pypi.org/project/gitlabui/)
Flask App over Gitlab Api to browse projects tags and to search into repository files
## Installation
```shell
pip install gitlabui
```
## Run Flask App
### Run with gunicorn
```shell
export GITLAB_URL=http://localhost/api/v4
export GITLAB_TOKEN=
gunicorn -b 0.0.0.0:5000 gitlabui:app
```
### Run with docker
```shell
docker run -d \
-e GITLAB_URL=http://localhost/api/v4 \
-e GITLAB_TOKEN= \
-p 5000:5000 batou9150/gitlabui gunicorn -b 0.0.0.0:5000 gitlabui:app
```