Valentin Valchev
Valentin Valchev
@raekcya If you run in docker, the `localhost` would be the container of judge system itself. You your call-back is running on the machine, that is running the docker engine,...
There is an interesting project from Google - https://github.com/googleapis/gnostic, that converts between openapi & protobuf (which is the core of gRPC). gRPC itself also natively has support how to describe...
You may start with adding `app.json`, with content like that: ``` { "name": "...", "description": "....", "addons": [ "heroku-postgresql", "heroku-redis" ], "env": { "ENV_VAR1": { "value": "value1" } } }...
when you create heroku app, it will create a url for your app I guess you should include them in the app.json and before that you can edit them to...
@DevelopedByAnurag honesly, I'm also not a pro on Heroku. I have deployed a site there once, just for fun, not for work. And the example above is copy from there....
Async doesn't always means that it's faster. It may be faster, and probably would scale better, as if the service is busy now, it will eventually get the work done,...
Hi, I'm exploring online judge systems in order to choose one for our academy. So I wanted to run NOJ in docker - it's way easier and doesn't polute my...
By no documentation for adding problems, I meant if there is some standard file format, that can be exported/imported. Recently I found FPS - https://github.com/zhblue/freeproblemset/. I'm not sure though if...
I came upon this issue, because we noticed the inconsistencies in the Errors API. So in order to generate the same error response we came up with this quick'n'dirty solution:...
If you download estatezilla from the web site, it's configured to use sqlite. Still you can't add property unless you do some small changes to the db: 1. download sqlite...