Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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