Raphael Maenle
70197ee393
- backend now takes care of all the recoloring, and communication with database - google handler takes care of the entire communication with google - colors selected on the front-end are now translated to the watch - Calendars in the database now directly save the color the user has set - only if the event has a different color than the calendar (event color from google is not 0) is the event color from google used. - No more passing around of google color ids, hex colors all the way
8 lines
274 B
Python
8 lines
274 B
Python
# Configuration
|
|
from server import app
|
|
|
|
if __name__ == "__main__":
|
|
context = ('certificate/xip.io.crt', 'certificate/xip.io.key')#certificate and key files
|
|
# app.run('0.0.0.0', 8084, ssl_context='adhoc', debug=True)
|
|
app.run(host='0.0.0.0', port=8084, debug=True)
|