A free and open source alternative ekşi sözlük front-end
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
ozgursozluk/serve.py

8 lines
173 B

#!/usr/bin/python3
from ozgursozluk import app
from ozgursozluk.config import HOST, PORT, DEBUG
if __name__ == "__main__":
app.run(host=HOST, port=PORT, debug=DEBUG)