Multiapps is a generic RPC and database sharing server based on JSON-RPC protocol and MongoDB, written entirely in python 3. It has wrapper apis to facilitate message between clients and access to database objects through a single connection. It is focused on performance and easy of use.
'''Starting Multiapps'''
* Make sure MongoDB is up and running
* Run the multiapps daemon: '''python start.py start''' (Remember it's based on python 3)
* To stop run: '''python start.py stop'''
'''Debugging in Multiapps'''
* You can run Multiapps in debug mode simply running the debug command in the daemon script:
* '''python start.py debug'''
* To stop simply type '''ctrl+c'''
'''Accessing Database'''
* Remember that MongoDB must be running
* Install your app using the script multiapps_install.py
* '''python multiapps_install.py myAppCode'''
* The script will generate an unique key that you must use with the code of your app (the code you used during the instalation). Think of this key as a password.