fej/.dockerignore

43 lines
541 B
Plaintext
Raw Permalink Normal View History

2021-03-05 20:40:49 +01:00
*
# =====BACKEND=====
## Source code
2021-03-05 20:40:49 +01:00
!src/
## Cargo files
2021-03-05 20:40:49 +01:00
!Cargo.toml
!Cargo.lock
2021-04-16 23:20:22 +02:00
## Entrypoint for devop container
2021-04-16 23:20:22 +02:00
!docker/entrypoint_dev.sh
2021-04-17 18:20:59 +02:00
!docker/entrypoint.sh
## Config file
!Rocket.toml
2021-04-17 14:43:24 +02:00
## Database migrations
2021-04-17 14:43:24 +02:00
!migrations/
2021-04-17 20:52:29 +02:00
## Crontab for release container
2021-04-17 20:52:29 +02:00
!docker/crontab
# =====FRONTEND=====
## Source code
!web/src/
## Public assets
!web/public/
!web/index.html
## Production env file
!web/.env.production
## Package manager stuff
!web/package.json
!web/yarn.lock
## Project configs
!web/tsconfig.json
!web/vite.config.ts