chore: add cpv results in examples

This commit is contained in:
Xyphuz 2022-05-25 17:55:52 +08:00
parent cbb1f0575d
commit f34ff42be3
4 changed files with 18 additions and 2 deletions

1
.gitignore vendored
View file

@ -161,3 +161,4 @@ cython_debug/
#.idea/ #.idea/
*.png *.png
!examples/**/*.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View file

@ -26,6 +26,9 @@ services:
- db - db
- adminer - adminer
- redis - redis
networks:
- front-tier
- back-tier
command: ["npm", "start"] command: ["npm", "start"]
frontend: frontend:
@ -43,6 +46,8 @@ services:
- ./frontend:/usr/src - ./frontend:/usr/src
depends_on: depends_on:
- api - api
networks:
- front-tier
command: ["npm", "start"] command: ["npm", "start"]
db: db:
@ -51,6 +56,8 @@ services:
service: postgres service: postgres
from: postgres.yml from: postgres.yml
restart: always restart: always
networks:
- back-tier
volumes: volumes:
- "db-data:/data" - "db-data:/data"
- type: bind - type: bind
@ -60,13 +67,21 @@ services:
redis: redis:
image: "awesome/redis" image: "awesome/redis"
restart: always restart: always
networks:
- back-tier
expose: expose:
- 6379 - 6379
adminer: adminer:
image: "awesome/adminer" image: "awesome/adminer"
networks:
- back-tier
ports: ports:
- 8080:8080 - 8080:8080
volumes: volumes:
db-data: db-data:
networks:
front-tier:
back-tier:

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB