Metadata-Version: 2.1
Name: thomas-server
Version: 0.1.1a17
Summary: Thomas' RESTful API and webinterface.
Home-page: https://github.com/mellesies/thomas-server
Author: Melle Sieswerda
Author-email: m.sieswerda@iknl.nl
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >= 3.6
Description-Content-Type: text/markdown
Requires-Dist: appdirs
Requires-Dist: bcrypt
Requires-Dist: click
Requires-Dist: colorama
Requires-Dist: eventlet
Requires-Dist: flask-cors
Requires-Dist: flask-restful
Requires-Dist: flask-socketio (>=4.2)
Requires-Dist: flask (>=1.1)
Requires-Dist: flask-jwt-extended
Requires-Dist: flask-marshmallow (>=0.12)
Requires-Dist: flask-sqlalchemy
Requires-Dist: marshmallow
Requires-Dist: marshmallow-sqlalchemy (>=0.22)
Requires-Dist: pyyaml
Requires-Dist: requests
Requires-Dist: sqlalchemy (>=1.3)
Requires-Dist: termcolor
Requires-Dist: thomas-core
Requires-Dist: py-fhir

# Thomas

Thomas' RESTful API and webinterface.

## Installation

### Normal
To install from PyPI use `pip`:

```bash
    pip install thomas-server
```

### Development
To do a development install:

```bash
    git clone https://github.com/mellesies/thomas-server
    cd thomas-server
    pip install -e .
```

### Docker
A Docker image is available for easy deployment. The following command will
start a server, listening on `localhost`, port `5000`:

```bash
    docker run --rm -it -p 5000:5000 mellesies/thomas-server
```

## Usage
Start the server as follows:

```bash
thomas start
```

Then point your browser towards [localhost](http://localhost:5000/static/index.html).


