-
Notifications
You must be signed in to change notification settings - Fork 126
/
deploy-commands.sh
executable file
·53 lines (44 loc) · 2.25 KB
/
deploy-commands.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
ETHLANCE_SOURCE_ROOT=/home/madis/code/district0x/ethlance
export ETHLANCE_ENV=qa
DEPLOY_TARGET=mad.is:~/www/ethlance
## Smart contracts
cd $ETHLANCE_SOURCE_ROOT
ETHLANCE_ENV=qa npx truffle migrate --network ethlance.mad.is-testnet --reset
#####################
## UI: prepare assets
#####################
cd $ETHLANCE_SOURCE_ROOT/ui && yarn
rm -rf .cpcache/* .shadow-cljs/*
export ETHLANCE_CONFIG_PATH=/home/madis/code/district0x/ethlance-config/config/ui-config-qa.edn
export SMART_CONTRACTS_BUILD_PATH=/home/madis/code/district0x/ethlance/resources/public/contracts/build
export SMART_CONTRACTS=/home/madis/code/district0x/ethlance/shared/src/ethlance/shared/smart_contracts_qa.cljs
cd $ETHLANCE_SOURCE_ROOT/ui && ETHLANCE_ENV=qa npx shadow-cljs release dev-ui
# To compile with local dependencies defined under :local-deps alias
ETHLANCE_ENV=qa clj -A:dev:shadow-cljs:local-deps release dev-ui
cd $ETHLANCE_SOURCE_ROOT/ui && ./node_modules/less/bin/lessc resources/public/less/main.less resources/public/css/main.css --verbose
## UI: copy assets
rsync --progress -ru resources/public/{css,images,index.html,js} ../resources/public/contracts $DEPLOY_TARGET/ui
##################
## Server: compile
##################
ETHLANCE_SERVER_ROOT=/home/madis/temp/ethlance/server
cd $ETHLANCE_SOURCE_ROOT/server
# Need to clear shadow-cljs cache to force the slurp macro to be evaluated again
# because the clojure file didn't change but the .edn config file did
# Alternatively the ethlance.server.core must be touched after changing config
rm -rf .shadow-cljs/* .cpcache/* out/*
# Release deployment
export ETHLANCE_CONFIG_PATH=/home/madis/code/district0x/ethlance-config/config/server-config-qa.edn
ETHLANCE_ENV=qa npx shadow-cljs release dev-server
# To compile including local changes to libraries:
ETHLANCE_ENV=qa clj -A:dev:shadow-cljs:local-deps release dev-server
rsync --progress -ru out/ethlance_server.js out/ethlance_server.js.map package.json $DEPLOY_TARGET/server
## Start server (on remote machine/container)
cd $ETHLANCE_SERVER_ROOT && yarn
cd $ETHLANCE_SERVER_ROOT && node ethlance_server.js
## Server Postgres
sudo -u postgres psql <<EOS
CREATE DATABASE ethlance;
CREATE USER ethlanceuser WITH ENCRYPTED PASSWORD 'pass';
GRANT ALL PRIVILEGES ON DATABASE ethlance TO ethlanceuser;
EOS