Just rest api with one point
Python - 3.6.4
Python packages - See requirements.txt
You need install all requirements, use for this:
pip install -r requirements.txt
If you want just run in cli for test:
python manage.py runserver
app
- Django application
app/utils
- Some utils for services
app/views
- Directory with views
app/services
- Services
requirements
- Python packages requirements for project
##Points
Return information about last commit in GIT repository and start time APP
Example:
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept
{
"commit": "12290ea81c41df46c1a3b91e7d6fe9849792afaf",
"commit_date": "2019-08-16T12:35:58Z",
"branch": "master",
"version": "",
"started": "2019-08-16T09:42:40Z",
"uptime_seconds": 1
}