/ONO

Project for Social Gathering, built using flask.

Primary LanguageHTMLMIT LicenseMIT

ONO OFFICIAL DEVELOPEMENT

ONO

RUNNING

bash ono.sh 

Should start running on your localhost...

DATABASE (MONGODB)

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
      )