bash ono.sh
Should start running on your localhost...
Set up a mongo collection and make a database with two collection called users
and messages
Then create a file called config.py
and connect it to your database like so:
import ssl
from pymongo import MongoClient
client = MongoClient(
'Insert Connection String Here',
ssl = True,
ssl_cert_reqs=ssl.CERT_NONE
)