Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/serve.py
blob: 452887673125401f64471d19544409fe01704a2d (plain)
1
2
3
4
5
6
7
8
9
10
#import webbrowser
import sys
port=5000
try:
    port=int(sys.argv[1])
except:
    pass
from websdk.studio import app 
#webbrowser.open('localhost:5000')
app.run(port=port)