Some repositories couldn't be updated, please check application logs for details.
BadCredentialsException: 401 {"message": "Bad credentials", "documentation_url": "https://docs.github.com/rest", "status": "401"}

aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server.py (follow)
Commit message (Collapse)AuthorAge
* server.py: ThreadingHTTPServer is Python 3.7+ onlyEgor Tensin2021-03-06
|
* server.py: only run from the script's directoryEgor Tensin2021-03-06
|
* server.py: port number is a parameterEgor Tensin2021-03-04
|
* update README, add some comments, etc.Egor Tensin2021-03-04
|
* server.py: return status 500 on error in app.pyEgor Tensin2021-03-03
|
* no more CGIEgor Tensin2021-03-03
| | | | | The server.py script now launches a web server and handles all the requests internally, without delegating anything to external scripts.
* add server.pyEgor Tensin2021-03-03
It runs a web server and imports the request handling classes from get.py directly, hence eliminating the performance culprit (which was the `import` processing for each request).