Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 6 hours 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-17T13:41:41.000Z (over 1 year ago)
- Last Synced: 2024-03-25T23:37:37.272Z (8 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