fej/.dockerignore

43 lines
541 B
Plaintext

*
# =====BACKEND=====
## Source code
!src/
## Cargo files
!Cargo.toml
!Cargo.lock
## Entrypoint for devop container
!docker/entrypoint_dev.sh
!docker/entrypoint.sh
## Config file
!Rocket.toml
## Database migrations
!migrations/
## Crontab for release container
!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