-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·20 lines (14 loc) · 976 Bytes
/
build.sh
File metadata and controls
executable file
·20 lines (14 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
mkdir -p app/static/media/js
echo "Building tagging-client"
cd tagging-client && ../deps/reflex-platform/work-on ./tr.nix ./. --run "cabal configure --ghcjs && cabal build" && cp -r dist/build/*/*.jsexe ../app/static/media/js/ && cd ..
echo "Done with tagging-client"
echo "Building homealone"
cd homealone && ../deps/reflex-platform/work-on ./tr.nix ./. --run "cabal configure --ghcjs && cabal build" && cp -r dist/build/*/*.jsexe ../app/static/media/js/ && cd ..
echo "Done with homealone"
echo "Building videomemory"
cd videomemory && ../deps/reflex-platform/work-on ./tr.nix ./. --run "cabal configure --ghcjs && cabal build" && cp -r dist/build/*/*.jsexe ../app/static/media/js/ && cd ..
echo "Done with videomemory"
echo "Building tagging-server"
cd tagging-server && ../deps/reflex-platform/work-on ./tr.nix ./. --run "cabal configure && cabal build" && cp dist/build/tagging-server/tagging-server ../app/ && cd ..
echo "Done with tagging-server"
echo "Finished"