https://github.com/indico/openreferee
OpenReferee Spec and Reference Implementation
https://github.com/indico/openreferee
conferences editing flask hacktoberfest openapi openreferee papers python science sqlalchemy swagger
Last synced: 4 months ago
JSON representation
OpenReferee Spec and Reference Implementation
- Host: GitHub
- URL: https://github.com/indico/openreferee
- Owner: indico
- License: mit
- Created: 2020-06-03T13:59:27.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-17T13:41:41.000Z (almost 2 years ago)
- Last Synced: 2025-03-06T05:55:42.676Z (4 months ago)
- Topics: conferences, editing, flask, hacktoberfest, openapi, openreferee, papers, python, science, sqlalchemy, swagger
- Language: Python
- Homepage:
- Size: 469 KB
- Stars: 0
- Watchers: 6
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenReferee
## OpenReferee Reference Server
This is a reference implementation of the OpenReferee Specification.
### Development setup
```
pip install -e '.[dev]'
npm ci
```### Running Test Server
```
flask run -p 12345
```### Consulting API Docs
```
npm run api-docs
```Docs available at http://localhost:5000
### Running Swagger UI (Docker required)
First, let's run the test server with CORS enabled
```
FLASK_ENABLE_CORS=1 flask run -p 12345
```Then, run the Swagger UI:
```
npm run swagger-ui
```Swagger UI available at http://localhost:5001