https://github.com/mainasuk/build-number-provider
https://github.com/mainasuk/build-number-provider
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mainasuk/build-number-provider
- Owner: MainasuK
- Created: 2025-07-04T06:57:16.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-04T09:12:50.000Z (12 months ago)
- Last Synced: 2025-07-04T10:25:08.183Z (12 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build Number Provider
## Setup
```zsh
source venv/bin/activate
pip install -r requirements.txt
# Debug
python -m flask --app app run --debug
# Release
python -m flask --app app run --port 18750
```
## Usage
```zsh
[POST] /v1/build_number
{
"latest_build_number": 100
}
# Response
{
"next_build_number": 101
}
```