aboutsummaryrefslogtreecommitdiffstats
path: root/ui/howto_build.md
diff options
context:
space:
mode:
authorKoren Lev <korenlev@gmail.com>2017-10-02 11:37:03 +0300
committerKoren Lev <korenlev@gmail.com>2017-10-02 11:37:03 +0300
commita9691f5fe78af32c474754f841a71a68e2d2a484 (patch)
tree6ad620ebc1f9adf6bf9fc671d88ea0adf8e7fe07 /ui/howto_build.md
parent1e1e95ac6560f26fc154fab4c990235da5ba23c6 (diff)
ui move to docker
Change-Id: Iff31ebb3fff782e848704801b7800fdf480264a1 Signed-off-by: Koren Lev <korenlev@gmail.com>
Diffstat (limited to 'ui/howto_build.md')
-rw-r--r--ui/howto_build.md43
1 files changed, 0 insertions, 43 deletions
diff --git a/ui/howto_build.md b/ui/howto_build.md
deleted file mode 100644
index 7dfb79e..0000000
--- a/ui/howto_build.md
+++ /dev/null
@@ -1,43 +0,0 @@
-# Calipso
-
-## Run
-
-```bash
-./run.sh
-```
-
-## Build
-
-```bash
-meteor build --architecture=os.linux.x86_64 ./
-```
-
-### Soruce Build
-
-```bash
-tar --exclude='./.meteor/local' --exclude='./node_modules' --exclude='./.git' -zcvf ../calipso-source-$(date +%Y-%m-%d).tar.gz .
-```
-## Testing - Build with Docker
-
-Testing on staging
-
-```bash
-docker run -d \
- -e ROOT_URL=http://testing-server-example.com \
- -e MONGO_URL=mongodb://testing-server-example.com:27017/calipso \
- -v /home/ofir/calipso:/bundle \
- -p 80:80 \
- kadirahq/meteord:base
-```
-
-Testing on local
-
-```bash
-docker run \
- --net=host \
- -e ROOT_URL=http://localhost \
- -e MONGO_URL=mongodb://localhost:27017/calipso \
- -v /home/eyal_work/projects/cisco/output:/bundle \
- kadirahq/meteord:base
-```
-