Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/run.py
blob: d6d37bd75a5758ab6ff2bcc00ca1cf8c3e9b8ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# python import
import sys
# add lib path to current python path
sys.path.append('lib')

# import server first
from server import Server

# atoideweb import
from atoideweb.controllers import app

# simple server entry point
if __name__ == "__main__":
    # init the server
    Server()
    # while ....
    while True:
        continue