Skip to content

Commit 40d3d1b

Browse files
author
Florent Espanet
committed
chore launch: add dlaunch.sh script
Use a docker container to launch the lumx server.
1 parent 257db24 commit 40d3d1b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

dlaunch.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
docker run --rm -it -p 8888:8888 -v "$PWD:/app" volnt/appengine ./launch.sh

launch.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
#!/bin/sh
2-
python $APPENGINE/dev_appserver.py --port 8888 build/
2+
3+
python $APPENGINE/dev_appserver.py --host 0.0.0.0 --port 8888 build/

0 commit comments

Comments
 (0)