This website requires JavaScript.
Explore
Help
Register
Sign in
Synthoria
/
SynthoriaArchive
Watch
1
Star
0
Fork
You've already forked SynthoriaArchive
0
mirror of
https://github.com/ProjectSynthoria/SynthoriaArchive.git
synced
2025-03-12 15:26:56 +02:00
Code
Activity
Actions
dd8cb4757e
SynthoriaArchive
/
run.py
4 lines
91 B
Python
Raw
Normal View
History
Unescape
Escape
Add proper shebang line to run.py (#275) Without a shebang, the shell tries to interpret the file as a shell script if you issue the ./run.py command; setting chmod +x on the file without a proper shebang is useless.
2017-06-29 23:48:19 +02:00
#!/usr/bin/env python3
Initial commit.
2017-05-12 20:51:49 +02:00
from
nyaa
import
app
app
.
run
(
host
=
'
0.0.0.0
'
,
port
=
5500
,
debug
=
True
)
Copy permalink