mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00

* Update Docker workflow add buildx and qemu to support mulitarch builds configure arm, arm64 and amd64 builds * Change yarn timeout fixes issue with yarn install timing out * chore: update gitignore * chore: add gitignore for web dir * chore(web): upgrade to yarn2 * build: update actions and push docker hub * build: add yarnrc and network-timeout * build: unifi workflow * build: depend on web to build first * build: store artifacts between jobs * build: store artifacts between jobs * build: store artifacts between jobs * build: store artifacts between jobs * build: adjust dockerignore * build: conditional extract metadata * build: conditional extract metadata * build: always push docker hub * build: skip docker hub for now * build: fix metadata
39 lines
521 B
Text
39 lines
521 B
Text
# Logs and databases #
|
|
######################
|
|
*.log
|
|
*.sql
|
|
*.sqlite
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.db*
|
|
|
|
# OS generated files #
|
|
######################
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Other
|
|
.idea
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/sdks
|
|
!.yarn/versions
|
|
node_modules/
|
|
web/build
|
|
bin/
|
|
log/
|
|
dist/
|
|
# If needed, package-lock.json shall be added
|
|
# manually using an explicit git add command.
|
|
package-lock.json
|
|
# Ditto for yarn, except we're using npm.
|
|
yarn.lock
|