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/
*.png
!examples/**/*.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB