-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakefile
More file actions
26 lines (20 loc) · 859 Bytes
/
makefile
File metadata and controls
26 lines (20 loc) · 859 Bytes
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
make install:
cd dv-marketplace && npm install && cd -
make react:
cd dv-marketplace && npm run dev && cd -
make boot:
mvn spring-boot:run
make boot-b:
cd dv-marketplace && npm run build && cd -
mvn spring-boot:run
make run:
cd dv-marketplace/docker-dev && docker build -t mkt-proxy . && docker run -d -p 8081:8081 --name mkt-proxy mkt-proxy & \
cd dv-marketplace && npm run dev & \
mvn -Pct clean package -DskipTests=true docker:build docker:run
make build:
cd dv-marketplace && npm run build && cd -
mvn -Pct clean package -DskipTests=true docker:build docker:build
make schemaspy:
# https://github.com/schemaspy/schemaspy/releases
# https://jdbc.postgresql.org/download/
java -jar ~/Downloads/schemaspy-6.2.4.jar -t pgsql -host localhost -db dv_mkt_pg -u admin -p admin -s public -dp ~/Downloads/postgresql-42.7.5.jar -o /tmp/schemaspy