Java

Bottle on Epio

As WSGI-based framework you can get Bottle running on ep.io. However it isn’t part of the documentation as yet.

The basic setup is an app.py, requirements.txt and the epio.ini. Requirements obviously just has bottle.

Epio.ini

[wsgi]

entrypoint = app:app

requirements = requirements.txt

The app.py file should be:

import bottle

app = bottle.app()

@bottle.route('/')
def home():
  return {"message" : "Hello world"}

That should give you a basic JSON service running quickly.

Standard

Leave a comment