Skip to content
Joerg Boeselt edited this page Sep 20, 2016 · 1 revision

Introduction

Plus endpoints

lxHive was written ground up with the goal of being easily extensible. As such, it is simple to add your own endpoints in the Plus namespace. To add a new basic endpoint you will most likely create 3 files - a controller, residing in the "Resource/{version}" folder, a "Service" where you manipulate/parse any data that needs to be presented and a "View" which is then presented to the user. More advanced use cases may require adding a new MongoDB collection and documents.

TODO

Requirements

TODO

Setting up routing (controllers)

TODO

Database abstraction via Service containers

TODO

Adding views

TODO