├── .autorc
├── .dockerignore
├── .gitattributes
├── .github
├── .kodiak.toml
├── CODEOWNERS
├── FUNDING.yml
└── workflows
│ └── release.yml
├── .gitignore
├── .kodiak.toml
├── .prettierignore
├── CHANGELOG.md
├── Cargo.lock
├── Cargo.toml
├── Dockerfile
├── LICENSE
├── LICENSE.md
├── Makefile
├── README.md
├── assets
├── foundryvtt-click-timed-url.png
├── foundryvtt-click-username.png
└── upload.png
├── docker-compose.yml
├── docs
└── kube.md
├── renovate.json
├── server
├── Cargo.toml
├── src
│ ├── config.rs
│ ├── downloader.rs
│ ├── events.rs
│ ├── extractor.rs
│ ├── handlers.rs
│ ├── initialization.rs
│ ├── launch.rs
│ ├── main.rs
│ ├── server.rs
│ └── utils.rs
└── static
│ ├── index.css
│ ├── index.html
│ └── index.js
└── yarn.lock
/.autorc:
--------------------------------------------------------------------------------
1 | {
2 | "plugins": [
3 | "git-tag",
4 | ["docker", { "registry": "docker.io/mbround18/foundryvtt-docker", "tagLatest": true }]
5 | ],
6 | "owner": "mbround18",
7 | "repo": "foundryvtt-docker",
8 | "name": "mbround18",
9 | "email": "12646562+mbround18@users.noreply.github.com",
10 | "onlyPublishWithReleaseLabel": true
11 | }
12 |
--------------------------------------------------------------------------------
/.dockerignore:
--------------------------------------------------------------------------------
1 | # Repo Specific
2 | dist/backend
3 | assets/
4 | client/
5 | docs/
6 |
7 | # IDEs
8 | .idea
9 | .vscode/
10 |
11 |
12 | # Other
13 | tmp/
14 | .env
15 | .github/
16 | *.log*
17 |
18 | node_modules/
19 | target/
20 |
21 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto eol=lf
2 | *.txt text
3 | *.vcproj text eol=crlf
4 | *.sh text eol=lf
5 | *.jpg -text
6 | *.png -textgh
--------------------------------------------------------------------------------
/.github/.kodiak.toml:
--------------------------------------------------------------------------------
1 | version = 1
2 |
3 | [update]
4 | always = true # default: false
5 | require_automerge_label = false # default: true
6 |
7 | [approve]
8 | auto_approve_usernames = ["dependabot", "renovate", "mbround18"]
9 |
10 | [merge.automerge_dependencies]
11 | usernames = ["dependabot", "renovate"]
12 |
--------------------------------------------------------------------------------
/.github/CODEOWNERS:
--------------------------------------------------------------------------------
1 | * @mbround18
2 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: [mbround18] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4 | patreon: mbround18 # Replace with a single Patreon username
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: # Replace with a single Ko-fi username
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9 | liberapay: # Replace with a single Liberapay username
10 | issuehunt: # Replace with a single IssueHunt username
11 | otechie: # Replace with a single Otechie username
12 | custom: ["https://paypal.me/MichaelBruno"]
13 |
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
1 | name: Release
2 |
3 | on:
4 | push:
5 | branches:
6 | - main
7 | tags:
8 | - v*
9 | pull_request:
10 | branches:
11 | - main
12 |
13 | jobs:
14 | docker-release:
15 | name: Release Train
16 | uses: mbround18/gh-reusable/.github/workflows/docker-release.yaml@main
17 | with:
18 | image: "mbround18/foundryvtt-docker"
19 | platforms: linux/amd64
20 | secrets: inherit
21 |
22 | git-release:
23 | if: ${{ github.ref_name == 'main' }}
24 | needs: docker-release
25 | uses: mbround18/gh-reusable/.github/workflows/tagger.yaml@main
26 | secrets: inherit
27 |
28 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .bak
2 | .env*
3 | tmp/
4 | *.log*
5 | node_modules
6 | dist/
7 | .yarn/*
8 | !.yarn/patches
9 | !.yarn/releases
10 | !.yarn/plugins
11 | !.yarn/sdks
12 | !.yarn/versions
13 | .pnp.*
14 | .parcel-cache/
15 |
16 | # Created by https://www.toptal.com/developers/gitignore/api/nuxt,nuxtjs,visualstudiocode,intellij+all
17 | # Edit at https://www.toptal.com/developers/gitignore?templates=nuxt,nuxtjs,visualstudiocode,intellij+all
18 |
19 | ### Intellij+all ###
20 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
21 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
22 |
23 | # User-specific stuff
24 | .idea/**/workspace.xml
25 | .idea/**/tasks.xml
26 | .idea/**/usage.statistics.xml
27 | .idea/**/dictionaries
28 | .idea/**/shelf
29 |
30 | # Generated files
31 | .idea/**/contentModel.xml
32 |
33 | # Sensitive or high-churn files
34 | .idea/**/dataSources/
35 | .idea/**/dataSources.ids
36 | .idea/**/dataSources.local.xml
37 | .idea/**/sqlDataSources.xml
38 | .idea/**/dynamic.xml
39 | .idea/**/uiDesigner.xml
40 | .idea/**/dbnavigator.xml
41 |
42 | # Gradle
43 | .idea/**/gradle.xml
44 | .idea/**/libraries
45 |
46 | # Gradle and Maven with auto-import
47 | # When using Gradle or Maven with auto-import, you should exclude module files,
48 | # since they will be recreated, and may cause churn. Uncomment if using
49 | # auto-import.
50 | # .idea/artifacts
51 | # .idea/compiler.xml
52 | # .idea/jarRepositories.xml
53 | # .idea/modules.xml
54 | # .idea/*.iml
55 | # .idea/modules
56 | # *.iml
57 | # *.ipr
58 |
59 | # CMake
60 | cmake-build-*/
61 |
62 | # Mongo Explorer plugin
63 | .idea/**/mongoSettings.xml
64 |
65 | # File-based project format
66 | *.iws
67 |
68 | # IntelliJ
69 | out/
70 |
71 | # mpeltonen/sbt-idea plugin
72 | .idea_modules/
73 |
74 | # JIRA plugin
75 | atlassian-ide-plugin.xml
76 |
77 | # Cursive Clojure plugin
78 | .idea/replstate.xml
79 |
80 | # Crashlytics plugin (for Android Studio and IntelliJ)
81 | com_crashlytics_export_strings.xml
82 | crashlytics.properties
83 | crashlytics-build.properties
84 | fabric.properties
85 |
86 | # Editor-based Rest Client
87 | .idea/httpRequests
88 |
89 | # Android studio 3.1+ serialized cache file
90 | .idea/caches/build_file_checksums.ser
91 |
92 | ### Intellij+all Patch ###
93 | # Ignores the whole .idea folder and all .iml files
94 | # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
95 |
96 | .idea/
97 |
98 | # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
99 |
100 | *.iml
101 | modules.xml
102 | .idea/misc.xml
103 | *.ipr
104 |
105 | # Sonarlint plugin
106 | .idea/sonarlint
107 |
108 | ### Nuxt ###
109 | # gitignore template for Nuxt.js projects
110 | #
111 | # Recommended template: Node.gitignore
112 |
113 | # Nuxt build
114 | .nuxt
115 |
116 | # Nuxt generate
117 | dist
118 |
119 | ### Nuxtjs ###
120 | # dependencies
121 | node_modules
122 |
123 | # logs
124 | npm-debug.log
125 |
126 | # Nuxt build
127 |
128 | # Nuxt generate
129 |
130 | ### VisualStudioCode ###
131 | .vscode/*
132 | !.vscode/settings.json
133 | !.vscode/tasks.json
134 | !.vscode/launch.json
135 | !.vscode/extensions.json
136 | *.code-workspace
137 |
138 | ### VisualStudioCode Patch ###
139 | # Ignore all local history of files
140 | .history
141 | .ionide
142 |
143 | target
144 |
145 | # End of https://www.toptal.com/developers/gitignore/api/nuxt,nuxtjs,visualstudiocode,intellij+all
146 |
--------------------------------------------------------------------------------
/.kodiak.toml:
--------------------------------------------------------------------------------
1 | version = 1
2 |
3 | [merge.automerge_dependencies]
4 | # only auto merge "minor" and "patch" version upgrades.
5 | # do not automerge "major" version upgrades.
6 | versions = ["minor", "patch"]
7 | usernames = ["dependabot", "renovate"]
8 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | dist
2 | node_modules
3 | .yarn
4 | .parcel-cache
5 | tmp
6 | target
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # v1.1.1 (Tue Apr 26 2022)
2 |
3 | #### 🐛 Bug Fix
4 |
5 | - Deps [#345](https://github.com/mbround18/foundryvtt-docker/pull/345) ([@mbround18](https://github.com/mbround18))
6 | - Update dependency sass to v1.51.0 [#344](https://github.com/mbround18/foundryvtt-docker/pull/344) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
7 | - Update dependency axios to v0.27.0 [#343](https://github.com/mbround18/foundryvtt-docker/pull/343) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
8 | - Update dependency autoprefixer to v10.4.5 [#342](https://github.com/mbround18/foundryvtt-docker/pull/342) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
9 | - Update parcel monorepo to v2.5.0 [#341](https://github.com/mbround18/foundryvtt-docker/pull/341) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
10 | - Update dependency sass to v1.50.1 [#340](https://github.com/mbround18/foundryvtt-docker/pull/340) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
11 | - Update dependency @types/lodash to v4.14.182 [#339](https://github.com/mbround18/foundryvtt-docker/pull/339) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
12 | - Update dependency h3 to v0.7.4 [#338](https://github.com/mbround18/foundryvtt-docker/pull/338) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
13 | - Update dependency tailwindcss to v3.0.24 [#337](https://github.com/mbround18/foundryvtt-docker/pull/337) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
14 | - Update dependency h3 to v0.7.3 [#336](https://github.com/mbround18/foundryvtt-docker/pull/336) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
15 | - Update dependency h3 to v0.7.2 [#335](https://github.com/mbround18/foundryvtt-docker/pull/335) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
16 | - Update dependency h3 to v0.7.1 [#334](https://github.com/mbround18/foundryvtt-docker/pull/334) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
17 | - Update dependency sass to v1.50.0 [#333](https://github.com/mbround18/foundryvtt-docker/pull/333) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
18 | - Update dependency h3 to v0.6.0 [#332](https://github.com/mbround18/foundryvtt-docker/pull/332) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
19 | - Update dependency @babel/runtime to v7.17.9 [#331](https://github.com/mbround18/foundryvtt-docker/pull/331) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
20 | - Update dependency h3 to v0.5.5 [#330](https://github.com/mbround18/foundryvtt-docker/pull/330) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
21 | - Update dependency concurrently to v7.1.0 [#329](https://github.com/mbround18/foundryvtt-docker/pull/329) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
22 | - Update dependency sass to v1.49.11 [#328](https://github.com/mbround18/foundryvtt-docker/pull/328) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
23 | - Update dependency h3 to v0.5.4 [#327](https://github.com/mbround18/foundryvtt-docker/pull/327) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
24 | - Update dependency h3 to v0.5.3 [#326](https://github.com/mbround18/foundryvtt-docker/pull/326) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
25 | - Update parcel monorepo to v2.4.1 [#325](https://github.com/mbround18/foundryvtt-docker/pull/325) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
26 | - Update dependency h3 to v0.5.2 [#324](https://github.com/mbround18/foundryvtt-docker/pull/324) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
27 | - Update dependency sass to v1.49.10 [#323](https://github.com/mbround18/foundryvtt-docker/pull/323) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
28 | - Update dependency h3 to v0.5.1 [#322](https://github.com/mbround18/foundryvtt-docker/pull/322) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
29 | - Update dependency @types/lodash to v4.14.181 [#321](https://github.com/mbround18/foundryvtt-docker/pull/321) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
30 | - Update dependency serve-static to v1.15.0 [#320](https://github.com/mbround18/foundryvtt-docker/pull/320) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
31 | - Update parcel monorepo to v2.4.0 [#319](https://github.com/mbround18/foundryvtt-docker/pull/319) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
32 | - Update actions/cache action to v3 [#318](https://github.com/mbround18/foundryvtt-docker/pull/318) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
33 | - Update dependency @auto-it/core to v10.36.5 [#316](https://github.com/mbround18/foundryvtt-docker/pull/316) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
34 | - Update dependency auto to v10.36.5 [#317](https://github.com/mbround18/foundryvtt-docker/pull/317) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
35 | - Update dependency auto to v10.36.4 [#315](https://github.com/mbround18/foundryvtt-docker/pull/315) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
36 | - Update dependency @auto-it/core to v10.36.4 [#314](https://github.com/mbround18/foundryvtt-docker/pull/314) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
37 | - Update dependency auto to v10.36.2 [#313](https://github.com/mbround18/foundryvtt-docker/pull/313) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
38 | - Update dependency @auto-it/core to v10.36.2 [#312](https://github.com/mbround18/foundryvtt-docker/pull/312) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
39 | - Update dependency @auto-it/core to v10.36.0 [#310](https://github.com/mbround18/foundryvtt-docker/pull/310) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
40 | - Update dependency auto to v10.36.0 [#311](https://github.com/mbround18/foundryvtt-docker/pull/311) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
41 | - Update dependency @babel/runtime to v7.17.8 [#309](https://github.com/mbround18/foundryvtt-docker/pull/309) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
42 | - Update dependency auto to v10.34.2 [#308](https://github.com/mbround18/foundryvtt-docker/pull/308) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
43 | - Update dependency @auto-it/core to v10.34.2 [#307](https://github.com/mbround18/foundryvtt-docker/pull/307) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
44 | - Update dependency h3 to v0.4.2 [#306](https://github.com/mbround18/foundryvtt-docker/pull/306) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
45 | - Update dependency postcss to v8.4.12 [#305](https://github.com/mbround18/foundryvtt-docker/pull/305) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
46 | - Update dependency autoprefixer to v10.4.4 [#304](https://github.com/mbround18/foundryvtt-docker/pull/304) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
47 | - Update dependency postcss to v8.4.11 [#303](https://github.com/mbround18/foundryvtt-docker/pull/303) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
48 | - Update dependency autoprefixer to v10.4.3 [#302](https://github.com/mbround18/foundryvtt-docker/pull/302) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
49 | - Update dependency postcss to v8.4.9 [#301](https://github.com/mbround18/foundryvtt-docker/pull/301) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
50 | - Update dependency @types/lodash to v4.14.180 [#300](https://github.com/mbround18/foundryvtt-docker/pull/300) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
51 | - Update dependency @babel/runtime to v7.17.7 [#299](https://github.com/mbround18/foundryvtt-docker/pull/299) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
52 | - Update dependency h3 to v0.4.1 [#298](https://github.com/mbround18/foundryvtt-docker/pull/298) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
53 | - Update dependency h3 to v0.4.0 [#297](https://github.com/mbround18/foundryvtt-docker/pull/297) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
54 | - Update dependency axios to v0.26.1 [#296](https://github.com/mbround18/foundryvtt-docker/pull/296) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
55 | - Update dependency postcss to v8.4.8 [#295](https://github.com/mbround18/foundryvtt-docker/pull/295) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
56 | - Update dependency auto to v10.34.1 [#294](https://github.com/mbround18/foundryvtt-docker/pull/294) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
57 | - Update dependency @auto-it/core to v10.34.1 [#293](https://github.com/mbround18/foundryvtt-docker/pull/293) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
58 | - Update dependency auto to v10.34.0 [#292](https://github.com/mbround18/foundryvtt-docker/pull/292) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
59 | - Update dependency @auto-it/core to v10.34.0 [#291](https://github.com/mbround18/foundryvtt-docker/pull/291) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
60 | - Update dependency auto to v10.33.1 [#290](https://github.com/mbround18/foundryvtt-docker/pull/290) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
61 | - Update dependency @auto-it/core to v10.33.1 [#289](https://github.com/mbround18/foundryvtt-docker/pull/289) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
62 | - Update dependency auto to v10.33.0 [#288](https://github.com/mbround18/foundryvtt-docker/pull/288) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
63 | - Update dependency @auto-it/core to v10.33.0 [#287](https://github.com/mbround18/foundryvtt-docker/pull/287) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
64 | - Update actions/checkout action to v3 [#286](https://github.com/mbround18/foundryvtt-docker/pull/286) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
65 | - Update dependency @types/lodash to v4.14.179 [#285](https://github.com/mbround18/foundryvtt-docker/pull/285) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
66 | - Update actions/setup-node action to v3 [#284](https://github.com/mbround18/foundryvtt-docker/pull/284) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
67 | - Update dependency postcss to v8.4.7 [#283](https://github.com/mbround18/foundryvtt-docker/pull/283) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
68 | - Update dependency sass to v1.49.9 [#282](https://github.com/mbround18/foundryvtt-docker/pull/282) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
69 | - Update dependency @yarnpkg/pnpify to v3.1.1 [#281](https://github.com/mbround18/foundryvtt-docker/pull/281) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
70 | - Update parcel monorepo to v2.3.2 [#280](https://github.com/mbround18/foundryvtt-docker/pull/280) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
71 | - Update dependency follow-redirects to v1.14.9 [#279](https://github.com/mbround18/foundryvtt-docker/pull/279) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
72 | - Update dependency sass to v1.49.8 [#278](https://github.com/mbround18/foundryvtt-docker/pull/278) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
73 | - Update dependency tailwindcss to v3.0.23 [#277](https://github.com/mbround18/foundryvtt-docker/pull/277) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
74 | - Update dependency sass-loader to v12.6.0 [#276](https://github.com/mbround18/foundryvtt-docker/pull/276) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
75 | - Update dependency sass-loader to v12.5.0 [#275](https://github.com/mbround18/foundryvtt-docker/pull/275) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
76 |
77 | #### Authors: 4
78 |
79 | - [@kodiakhq[bot]](https://github.com/kodiakhq[bot])
80 | - [@renovate[bot]](https://github.com/renovate[bot])
81 | - Michael ([@mbround18](https://github.com/mbround18))
82 | - WhiteSource Renovate ([@renovate-bot](https://github.com/renovate-bot))
83 |
84 | ---
85 |
86 | # v1.1.0 (Mon Feb 14 2022)
87 |
88 | #### 🚀 Enhancement
89 |
90 | - Update README.md [#274](https://github.com/mbround18/foundryvtt-docker/pull/274) ([@mbround18](https://github.com/mbround18))
91 | - Simplify project. [#272](https://github.com/mbround18/foundryvtt-docker/pull/272) ([@mbround18](https://github.com/mbround18))
92 |
93 | #### 🐛 Bug Fix
94 |
95 | - Pin dependencies [#273](https://github.com/mbround18/foundryvtt-docker/pull/273) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
96 | - Update dependency axios to v0.26.0 [#271](https://github.com/mbround18/foundryvtt-docker/pull/271) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
97 | - Update dependency express-rate-limit to v6.2.1 [#270](https://github.com/mbround18/foundryvtt-docker/pull/270) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
98 | - Update babel monorepo to v7.17.2 [#269](https://github.com/mbround18/foundryvtt-docker/pull/269) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
99 | - Update dependency follow-redirects to v1.14.8 [#268](https://github.com/mbround18/foundryvtt-docker/pull/268) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
100 | - Update babel monorepo to v7.17.0 [#266](https://github.com/mbround18/foundryvtt-docker/pull/266) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
101 | - Update dependency express-fileupload to v1.3.1 [#265](https://github.com/mbround18/foundryvtt-docker/pull/265) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
102 | - Update dependency webpack-dev-server to v4.7.4 [#264](https://github.com/mbround18/foundryvtt-docker/pull/264) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
103 | - Update dependency sass to v1.49.7 [#263](https://github.com/mbround18/foundryvtt-docker/pull/263) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
104 | - Update dependency sass to v1.49.6 [#262](https://github.com/mbround18/foundryvtt-docker/pull/262) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
105 | - Update dependency sass to v1.49.5 [#261](https://github.com/mbround18/foundryvtt-docker/pull/261) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
106 | - Update dependency sass to v1.49.4 [#260](https://github.com/mbround18/foundryvtt-docker/pull/260) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
107 | - Update dependency sass to v1.49.3 [#259](https://github.com/mbround18/foundryvtt-docker/pull/259) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
108 | - Update dependency sass to v1.49.0 [#257](https://github.com/mbround18/foundryvtt-docker/pull/257) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
109 | - Update dependency express-rate-limit to v6.2.0 [#256](https://github.com/mbround18/foundryvtt-docker/pull/256) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
110 | - Update dependency axios to v0.25.0 [#255](https://github.com/mbround18/foundryvtt-docker/pull/255) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
111 | - Update dependency webpack-dev-server to v4.7.3 [#254](https://github.com/mbround18/foundryvtt-docker/pull/254) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
112 | - Update dependency webpack-cli to v4.9.2 [#253](https://github.com/mbround18/foundryvtt-docker/pull/253) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
113 | - Update dependency vuetify to v2.6.3 [#252](https://github.com/mbround18/foundryvtt-docker/pull/252) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
114 | - Update dependency sass-loader to v10.2.1 [#251](https://github.com/mbround18/foundryvtt-docker/pull/251) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
115 | - Update dependency auto to v10.32.6 [#249](https://github.com/mbround18/foundryvtt-docker/pull/249) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
116 | - Update dependency @auto-it/core to v10.32.6 [#247](https://github.com/mbround18/foundryvtt-docker/pull/247) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
117 | - Update dependency follow-redirects to v1.14.7 [SECURITY] - autoclosed [#248](https://github.com/mbround18/foundryvtt-docker/pull/248) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
118 | - Update babel monorepo [#246](https://github.com/mbround18/foundryvtt-docker/pull/246) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
119 | - Update dependency html-loader to v3.1.0 [#244](https://github.com/mbround18/foundryvtt-docker/pull/244) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
120 | - Update dependency sass to v1.47.0 [#243](https://github.com/mbround18/foundryvtt-docker/pull/243) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
121 | - Update dependency shelljs to v0.8.5 [#242](https://github.com/mbround18/foundryvtt-docker/pull/242) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
122 | - Update dependency express-rate-limit to v6.0.5 [#241](https://github.com/mbround18/foundryvtt-docker/pull/241) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
123 | - Update dependency sass to v1.46.0 [#240](https://github.com/mbround18/foundryvtt-docker/pull/240) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
124 | - Update dependency express-rate-limit to v6.0.4 [#239](https://github.com/mbround18/foundryvtt-docker/pull/239) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
125 | - Update babel monorepo to v7.16.7 [#237](https://github.com/mbround18/foundryvtt-docker/pull/237) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
126 | - Update dependency sass to v1.45.2 [#238](https://github.com/mbround18/foundryvtt-docker/pull/238) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
127 | - Update dependency express-rate-limit to v6.0.3 [#236](https://github.com/mbround18/foundryvtt-docker/pull/236) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
128 | - Update dependency express-rate-limit to v6.0.2 [#235](https://github.com/mbround18/foundryvtt-docker/pull/235) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
129 | - Update dependency webpack-dev-server to v4.7.2 [#234](https://github.com/mbround18/foundryvtt-docker/pull/234) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
130 | - Update dependency vuetify to v2.6.2 [#233](https://github.com/mbround18/foundryvtt-docker/pull/233) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
131 | - Update dependency express-rate-limit to v6.0.1 [#232](https://github.com/mbround18/foundryvtt-docker/pull/232) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
132 | - Update dependency express-rate-limit to v6 [#231](https://github.com/mbround18/foundryvtt-docker/pull/231) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
133 | - Update dependency webpack-dev-server to v4.7.1 [#230](https://github.com/mbround18/foundryvtt-docker/pull/230) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
134 | - Update dependency webpack-dev-server to v4.7.0 [#229](https://github.com/mbround18/foundryvtt-docker/pull/229) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
135 | - Update dependency sass to v1.45.1 [#228](https://github.com/mbround18/foundryvtt-docker/pull/228) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
136 | - Update dependency express to v4.17.2 [#227](https://github.com/mbround18/foundryvtt-docker/pull/227) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
137 | - Update babel monorepo to v7.16.5 [#226](https://github.com/mbround18/foundryvtt-docker/pull/226) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
138 | - Update dependency @nuxtjs/vuetify to v1.12.3 [#225](https://github.com/mbround18/foundryvtt-docker/pull/225) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
139 | - Update dependency auto to v10.32.5 [#224](https://github.com/mbround18/foundryvtt-docker/pull/224) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
140 | - Update dependency @auto-it/core to v10.32.5 [#223](https://github.com/mbround18/foundryvtt-docker/pull/223) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
141 | - Update dependency sass to v1.45.0 [#222](https://github.com/mbround18/foundryvtt-docker/pull/222) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
142 | - Update dependency auto to v10.32.4 [#221](https://github.com/mbround18/foundryvtt-docker/pull/221) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
143 | - Update dependency @auto-it/core to v10.32.4 [#220](https://github.com/mbround18/foundryvtt-docker/pull/220) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
144 | - Update dependency follow-redirects to v1.14.6 [#219](https://github.com/mbround18/foundryvtt-docker/pull/219) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
145 | - Update dependency webpack to v5.65.0 [#218](https://github.com/mbround18/foundryvtt-docker/pull/218) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
146 | - Update dependency workbox-webpack-plugin to v6.4.2 [#217](https://github.com/mbround18/foundryvtt-docker/pull/217) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
147 | - Update dependency vuetify to v2.6.1 [#216](https://github.com/mbround18/foundryvtt-docker/pull/216) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
148 | - Update dependency sass to v1.44.0 [#215](https://github.com/mbround18/foundryvtt-docker/pull/215) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
149 | - Update dependency @nuxtjs/vuetify to v1.12.2 [#214](https://github.com/mbround18/foundryvtt-docker/pull/214) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
150 | - Update dependency debug to v4.3.3 [#213](https://github.com/mbround18/foundryvtt-docker/pull/213) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
151 | - Update dependency supports-color to v9.2.1 [#212](https://github.com/mbround18/foundryvtt-docker/pull/212) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
152 | - Update dependency webpack-dev-server to v4.6.0 [#211](https://github.com/mbround18/foundryvtt-docker/pull/211) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
153 | - Update dependency webpack to v5.64.4 [#210](https://github.com/mbround18/foundryvtt-docker/pull/210) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
154 | - Update dependency sass to v1.43.5 [#209](https://github.com/mbround18/foundryvtt-docker/pull/209) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
155 | - Update dependency webpack to v5.64.3 [#208](https://github.com/mbround18/foundryvtt-docker/pull/208) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
156 | - Update dependency auto to v10.32.3 [#207](https://github.com/mbround18/foundryvtt-docker/pull/207) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
157 | - Update dependency @auto-it/core to v10.32.3 [#206](https://github.com/mbround18/foundryvtt-docker/pull/206) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
158 | - Update dependency webpack to v5.64.2 [#205](https://github.com/mbround18/foundryvtt-docker/pull/205) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
159 | - Update dependency supports-color to v9.1.0 [#204](https://github.com/mbround18/foundryvtt-docker/pull/204) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
160 | - Update babel monorepo to v7.16.4 [#203](https://github.com/mbround18/foundryvtt-docker/pull/203) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
161 | - Update dependency workbox-webpack-plugin to v6.4.1 [#202](https://github.com/mbround18/foundryvtt-docker/pull/202) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
162 | - Update dependency webpack to v5.64.1 [#201](https://github.com/mbround18/foundryvtt-docker/pull/201) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
163 | - Update dependency vuetify to v2.6.0 [#200](https://github.com/mbround18/foundryvtt-docker/pull/200) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
164 | - Update dependency webpack-dev-server to v4.5.0 [#199](https://github.com/mbround18/foundryvtt-docker/pull/199) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
165 | - Update dependency webpack to v5.64.0 [#198](https://github.com/mbround18/foundryvtt-docker/pull/198) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
166 | - Update dependency webpack to v5.63.0 [#197](https://github.com/mbround18/foundryvtt-docker/pull/197) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
167 | - Update dependency @babel/runtime to v7.16.3 [#196](https://github.com/mbround18/foundryvtt-docker/pull/196) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
168 | - Update dependency nodemon to v2.0.15 [#195](https://github.com/mbround18/foundryvtt-docker/pull/195) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
169 | - Update dependency vuetify to v2.5.14 [#194](https://github.com/mbround18/foundryvtt-docker/pull/194) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
170 | - Update dependency webpack to v5.62.2 [#193](https://github.com/mbround18/foundryvtt-docker/pull/193) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
171 | - Update dependency vuetify to v2.5.13 [#192](https://github.com/mbround18/foundryvtt-docker/pull/192) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
172 | - Update dependency express-rate-limit to v5.5.1 [#191](https://github.com/mbround18/foundryvtt-docker/pull/191) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
173 | - Update dependency webpack to v5.62.1 [#190](https://github.com/mbround18/foundryvtt-docker/pull/190) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
174 | - Update dependency webpack to v5.62.0 [#189](https://github.com/mbround18/foundryvtt-docker/pull/189) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
175 | - Update dependency vuetify to v2.5.12 [#188](https://github.com/mbround18/foundryvtt-docker/pull/188) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
176 | - Update dependency vuetify to v2.5.11 [#187](https://github.com/mbround18/foundryvtt-docker/pull/187) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
177 | - Update dependency html-loader to v3.0.1 [#186](https://github.com/mbround18/foundryvtt-docker/pull/186) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
178 | - Update dependency follow-redirects to v1.14.5 [#185](https://github.com/mbround18/foundryvtt-docker/pull/185) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
179 | - Update babel monorepo to v7.16.0 [#184](https://github.com/mbround18/foundryvtt-docker/pull/184) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
180 | - Update dependency webpack to v5.61.0 [#183](https://github.com/mbround18/foundryvtt-docker/pull/183) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
181 | - Update dependency webpack-dev-server to v4.4.0 [#182](https://github.com/mbround18/foundryvtt-docker/pull/182) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
182 | - Update dependency sass to v1.43.4 [#181](https://github.com/mbround18/foundryvtt-docker/pull/181) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
183 | - Update dependency auto to v10.32.2 [#180](https://github.com/mbround18/foundryvtt-docker/pull/180) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
184 | - Update dependency @auto-it/core to v10.32.2 [#179](https://github.com/mbround18/foundryvtt-docker/pull/179) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
185 | - Update dependency axios to v0.24.0 [#178](https://github.com/mbround18/foundryvtt-docker/pull/178) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
186 | - Update dependency webpack to v5.60.0 [#177](https://github.com/mbround18/foundryvtt-docker/pull/177) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
187 | - Update dependency @yarnpkg/pnpify to v3.1.0 [#176](https://github.com/mbround18/foundryvtt-docker/pull/176) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
188 | - Update dependency html-webpack-plugin to v5.5.0 [#175](https://github.com/mbround18/foundryvtt-docker/pull/175) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
189 | - Update dependency sass to v1.43.3 [#174](https://github.com/mbround18/foundryvtt-docker/pull/174) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
190 | - Update dependency html-loader to v3 [#173](https://github.com/mbround18/foundryvtt-docker/pull/173) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
191 | - Update dependency webpack to v5.59.1 [#172](https://github.com/mbround18/foundryvtt-docker/pull/172) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
192 | - Update dependency babel-loader to v8.2.3 [#171](https://github.com/mbround18/foundryvtt-docker/pull/171) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
193 | - Update dependency webpack to v5.59.0 [#170](https://github.com/mbround18/foundryvtt-docker/pull/170) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
194 | - Update dependency nodemon to v2.0.14 [#169](https://github.com/mbround18/foundryvtt-docker/pull/169) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
195 | - Update dependency webpack-cli to v4.9.1 [#168](https://github.com/mbround18/foundryvtt-docker/pull/168) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
196 | - Update dependency html-webpack-plugin to v5.4.0 [#167](https://github.com/mbround18/foundryvtt-docker/pull/167) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
197 | - Update dependency sass to v1.43.2 [#166](https://github.com/mbround18/foundryvtt-docker/pull/166) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
198 | - Update dependency webpack to v5.58.2 [#165](https://github.com/mbround18/foundryvtt-docker/pull/165) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
199 | - Update dependency express-rate-limit to v5.5.0 [#164](https://github.com/mbround18/foundryvtt-docker/pull/164) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
200 | - Update dependency axios to v0.23.0 [#163](https://github.com/mbround18/foundryvtt-docker/pull/163) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
201 | - Update dependency vuetify to v2.5.10 [#162](https://github.com/mbround18/foundryvtt-docker/pull/162) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
202 | - Update dependency webpack to v5.58.1 [#161](https://github.com/mbround18/foundryvtt-docker/pull/161) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
203 | - Update dependency webpack to v5.58.0 [#160](https://github.com/mbround18/foundryvtt-docker/pull/160) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
204 | - Update dependency webpack-cli to v4.9.0 [#159](https://github.com/mbround18/foundryvtt-docker/pull/159) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
205 | - Update babel monorepo to v7.15.8 [#158](https://github.com/mbround18/foundryvtt-docker/pull/158) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
206 | - Update dependency express-rate-limit to v5.4.1 [#157](https://github.com/mbround18/foundryvtt-docker/pull/157) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
207 | - Update dependency webpack to v5.57.1 [#156](https://github.com/mbround18/foundryvtt-docker/pull/156) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
208 | - Update dependency webpack to v5.57.0 [#155](https://github.com/mbround18/foundryvtt-docker/pull/155) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
209 | - Update dependency webpack-dev-server to v4.3.1 [#154](https://github.com/mbround18/foundryvtt-docker/pull/154) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
210 | - Update dependency webpack to v5.56.1 [#153](https://github.com/mbround18/foundryvtt-docker/pull/153) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
211 | - Update dependency express-rate-limit to v5.4.0 [#152](https://github.com/mbround18/foundryvtt-docker/pull/152) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
212 | - Update dependency webpack to v5.56.0 [#151](https://github.com/mbround18/foundryvtt-docker/pull/151) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
213 | - Update dependency axios to v0.22.0 [#150](https://github.com/mbround18/foundryvtt-docker/pull/150) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
214 | - Update dependency auto to v10.32.1 [#149](https://github.com/mbround18/foundryvtt-docker/pull/149) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
215 | - Update dependency @auto-it/core to v10.32.1 [#148](https://github.com/mbround18/foundryvtt-docker/pull/148) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
216 | - Update dependency webpack to v5.55.1 [#147](https://github.com/mbround18/foundryvtt-docker/pull/147) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
217 | - Update dependency vuetify to v2.5.9 [#146](https://github.com/mbround18/foundryvtt-docker/pull/146) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
218 | - Update dependency webpack to v5.55.0 [#145](https://github.com/mbround18/foundryvtt-docker/pull/145) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
219 | - Update dependency webpack-dev-server to v4.3.0 [#144](https://github.com/mbround18/foundryvtt-docker/pull/144) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
220 | - Update dependency webpack to v5.54.0 [#143](https://github.com/mbround18/foundryvtt-docker/pull/143) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
221 | - Update dependency nodemon to v2.0.13 [#142](https://github.com/mbround18/foundryvtt-docker/pull/142) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
222 | - Update dependency sass to v1.42.1 [#141](https://github.com/mbround18/foundryvtt-docker/pull/141) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
223 | - Update dependency sass to v1.42.0 [#140](https://github.com/mbround18/foundryvtt-docker/pull/140) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
224 | - Update dependency sass to v1.41.1 [#139](https://github.com/mbround18/foundryvtt-docker/pull/139) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
225 | - Update dependency webpack to v5.53.0 [#138](https://github.com/mbround18/foundryvtt-docker/pull/138) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
226 | - Update dependency auto to v10.32.0 [#137](https://github.com/mbround18/foundryvtt-docker/pull/137) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
227 | - Update dependency @auto-it/core to v10.32.0 [#136](https://github.com/mbround18/foundryvtt-docker/pull/136) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
228 | - Update dependency sass to v1.41.0 [#135](https://github.com/mbround18/foundryvtt-docker/pull/135) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
229 | - Update dependency follow-redirects to v1.14.4 [#134](https://github.com/mbround18/foundryvtt-docker/pull/134) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
230 | - Update dependency sass to v1.40.1 [#133](https://github.com/mbround18/foundryvtt-docker/pull/133) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
231 | - Update dependency sass to v1.40.0 [#132](https://github.com/mbround18/foundryvtt-docker/pull/132) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
232 | - Update dependency webpack-dev-server to v4.2.1 [#131](https://github.com/mbround18/foundryvtt-docker/pull/131) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
233 | - Update dependency webpack to v5.52.1 [#130](https://github.com/mbround18/foundryvtt-docker/pull/130) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
234 | - Update dependency sass to v1.39.2 [#129](https://github.com/mbround18/foundryvtt-docker/pull/129) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
235 | - Update dependency sass to v1.39.1 [#128](https://github.com/mbround18/foundryvtt-docker/pull/128) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
236 | - Update dependency webpack-dev-server to v4.2.0 [#127](https://github.com/mbround18/foundryvtt-docker/pull/127) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
237 | - Update dependency @babel/preset-env to v7.15.6 [#126](https://github.com/mbround18/foundryvtt-docker/pull/126) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
238 | - Update dependency workbox-webpack-plugin to v6.3.0 [#125](https://github.com/mbround18/foundryvtt-docker/pull/125) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
239 | - Update dependency axios to v0.21.4 [#123](https://github.com/mbround18/foundryvtt-docker/pull/123) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
240 | - Update dependency webpack-dev-server to v4.1.1 [#124](https://github.com/mbround18/foundryvtt-docker/pull/124) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
241 | - Update dependency axios to v0.21.3 [#122](https://github.com/mbround18/foundryvtt-docker/pull/122) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
242 | - Update dependency axios to v0.21.2 [#121](https://github.com/mbround18/foundryvtt-docker/pull/121) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
243 | - Update dependency @babel/core to v7.15.5 [#120](https://github.com/mbround18/foundryvtt-docker/pull/120) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
244 | - Update dependency webpack to v5.52.0 [#119](https://github.com/mbround18/foundryvtt-docker/pull/119) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
245 | - Update babel monorepo to v7.15.4 [#118](https://github.com/mbround18/foundryvtt-docker/pull/118) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
246 | - Update dependency webpack to v5.51.2 [#117](https://github.com/mbround18/foundryvtt-docker/pull/117) ([@renovate-bot](https://github.com/renovate-bot) [@kodiakhq[bot]](https://github.com/kodiakhq[bot]) [@renovate[bot]](https://github.com/renovate[bot]))
247 | - Update dependency follow-redirects to v1.14.3 [#116](https://github.com/mbround18/foundryvtt-docker/pull/116) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
248 | - Update dependency sass to v1.39.0 [#115](https://github.com/mbround18/foundryvtt-docker/pull/115) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
249 | - Update dependency webpack-dev-server to v4.1.0 [#114](https://github.com/mbround18/foundryvtt-docker/pull/114) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
250 | - Update dependency sass to v1.38.2 [#112](https://github.com/mbround18/foundryvtt-docker/pull/112) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
251 | - Update dependency webpack to v5.51.1 [#110](https://github.com/mbround18/foundryvtt-docker/pull/110) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
252 | - Update dependency sass to v1.38.1 [#111](https://github.com/mbround18/foundryvtt-docker/pull/111) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
253 | - Update dependency webpack to v5.51.0 [#109](https://github.com/mbround18/foundryvtt-docker/pull/109) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
254 | - Update dependency webpack-dev-server to v4 [#108](https://github.com/mbround18/foundryvtt-docker/pull/108) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
255 | - Update dependency follow-redirects to v1.14.2 [#107](https://github.com/mbround18/foundryvtt-docker/pull/107) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
256 | - Update dependency sass to v1.38.0 [#106](https://github.com/mbround18/foundryvtt-docker/pull/106) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
257 | - Update dependency webpack-cli to v4.8.0 [#105](https://github.com/mbround18/foundryvtt-docker/pull/105) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
258 | - Update dependency auto to v10.31.0 [#104](https://github.com/mbround18/foundryvtt-docker/pull/104) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
259 | - Update dependency @auto-it/core to v10.31.0 [#103](https://github.com/mbround18/foundryvtt-docker/pull/103) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
260 | - Update dependency @yarnpkg/pnpify to v3.0.1 [#102](https://github.com/mbround18/foundryvtt-docker/pull/102) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
261 | - Update dependency workbox-webpack-plugin to v6.2.4 [#100](https://github.com/mbround18/foundryvtt-docker/pull/100) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
262 | - Update dependency @babel/runtime to v7.15.3 [#99](https://github.com/mbround18/foundryvtt-docker/pull/99) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
263 | - Update dependency webpack to v5.50.0 [#98](https://github.com/mbround18/foundryvtt-docker/pull/98) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
264 | - Update dependency workbox-webpack-plugin to v6.2.3 [#97](https://github.com/mbround18/foundryvtt-docker/pull/97) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
265 | - Update dependency workbox-webpack-plugin to v6.2.2 [#96](https://github.com/mbround18/foundryvtt-docker/pull/96) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
266 | - Update dependency webpack to v5.49.0 [#95](https://github.com/mbround18/foundryvtt-docker/pull/95) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
267 | - Update dependency workbox-webpack-plugin to v6.2.0 [#94](https://github.com/mbround18/foundryvtt-docker/pull/94) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
268 | - Update babel monorepo to v7.15.0 [#93](https://github.com/mbround18/foundryvtt-docker/pull/93) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
269 | - Update dependency sass to v1.37.5 [#92](https://github.com/mbround18/foundryvtt-docker/pull/92) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
270 | - Update dependency sass to v1.37.4 [#91](https://github.com/mbround18/foundryvtt-docker/pull/91) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
271 | - Update dependency sass to v1.37.3 [#90](https://github.com/mbround18/foundryvtt-docker/pull/90) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
272 | - Update dependency sass to v1.37.2 [#89](https://github.com/mbround18/foundryvtt-docker/pull/89) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
273 | - Update dependency sass to v1.37.1 [#88](https://github.com/mbround18/foundryvtt-docker/pull/88) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
274 | - Update dependency webpack to v5.48.0 [#87](https://github.com/mbround18/foundryvtt-docker/pull/87) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
275 | - Update dependency @babel/preset-env to v7.14.9 [#86](https://github.com/mbround18/foundryvtt-docker/pull/86) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
276 | - Update dependency sass to v1.37.0 [#85](https://github.com/mbround18/foundryvtt-docker/pull/85) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
277 | - Update dependency vuetify to v2.5.8 [#84](https://github.com/mbround18/foundryvtt-docker/pull/84) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
278 | - Update dependency webpack to v5.47.1 [#83](https://github.com/mbround18/foundryvtt-docker/pull/83) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
279 | - Update dependency webpack to v5.47.0 [#82](https://github.com/mbround18/foundryvtt-docker/pull/82) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
280 | - Update dependency @yarnpkg/pnpify to v3.0.0 [#81](https://github.com/mbround18/foundryvtt-docker/pull/81) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
281 | - Update dependency @yarnpkg/pnpify to v3.0.0-rc.14 [#80](https://github.com/mbround18/foundryvtt-docker/pull/80) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
282 | - Update dependency sass to v1.36.0 [#79](https://github.com/mbround18/foundryvtt-docker/pull/79) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
283 | - Update dependency auto to v10.30.0 [#78](https://github.com/mbround18/foundryvtt-docker/pull/78) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
284 | - Update dependency @auto-it/core to v10.30.0 [#77](https://github.com/mbround18/foundryvtt-docker/pull/77) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
285 | - Update dependency webpack to v5.46.0 [#76](https://github.com/mbround18/foundryvtt-docker/pull/76) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
286 | - Update babel monorepo to v7.14.8 [#75](https://github.com/mbround18/foundryvtt-docker/pull/75) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
287 | - Update dependency vuetify to v2.5.7 [#74](https://github.com/mbround18/foundryvtt-docker/pull/74) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
288 | - Update dependency @yarnpkg/pnpify to v3.0.0-rc.13 [#73](https://github.com/mbround18/foundryvtt-docker/pull/73) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
289 | - Update dependency @yarnpkg/pnpify to v3.0.0-rc.12 [#72](https://github.com/mbround18/foundryvtt-docker/pull/72) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
290 | - Update dependency @yarnpkg/pnpify to v3.0.0-rc.11 [#71](https://github.com/mbround18/foundryvtt-docker/pull/71) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
291 | - Update dependency supports-color to v9.0.2 [#70](https://github.com/mbround18/foundryvtt-docker/pull/70) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
292 | - Update dependency webpack to v5.45.1 [#69](https://github.com/mbround18/foundryvtt-docker/pull/69) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
293 | - Update dependency webpack to v5.45.0 [#68](https://github.com/mbround18/foundryvtt-docker/pull/68) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
294 | - Update dependency webpack to v5.44.0 [#65](https://github.com/mbround18/foundryvtt-docker/pull/65) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
295 | - Update dependency nodemon to v2.0.12 [#67](https://github.com/mbround18/foundryvtt-docker/pull/67) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
296 | - Update dependency nodemon to v2.0.11 [#66](https://github.com/mbround18/foundryvtt-docker/pull/66) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
297 | - Update dependency nodemon to v2.0.10 [#64](https://github.com/mbround18/foundryvtt-docker/pull/64) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
298 | - Update dependency webpack to v5.43.0 [#62](https://github.com/mbround18/foundryvtt-docker/pull/62) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
299 | - Update dependency sass to v1.35.2 [#63](https://github.com/mbround18/foundryvtt-docker/pull/63) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
300 | - Update dependency express-rate-limit to v5.3.0 [#59](https://github.com/mbround18/foundryvtt-docker/pull/59) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
301 | - Update dependency webpack to v5.42.1 [#60](https://github.com/mbround18/foundryvtt-docker/pull/60) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
302 | - Update dependency @yarnpkg/pnpify to v3.0.0-rc.10 [#61](https://github.com/mbround18/foundryvtt-docker/pull/61) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
303 | - Update dependency nodemon to v2.0.9 [#58](https://github.com/mbround18/foundryvtt-docker/pull/58) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
304 | - Update dependency nodemon to v2.0.8 [#55](https://github.com/mbround18/foundryvtt-docker/pull/55) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
305 | - Update dependency vuetify to v2.5.6 [#57](https://github.com/mbround18/foundryvtt-docker/pull/57) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
306 | - Update dependency webpack to v5.41.1 [#56](https://github.com/mbround18/foundryvtt-docker/pull/56) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
307 | - Update dependency webpack to v5.41.0 [#54](https://github.com/mbround18/foundryvtt-docker/pull/54) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
308 | - Update dependency html-webpack-plugin to v5.3.2 [#51](https://github.com/mbround18/foundryvtt-docker/pull/51) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
309 | - Update dependency @yarnpkg/pnpify to v3.0.0-rc.7 [#52](https://github.com/mbround18/foundryvtt-docker/pull/52) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
310 | - Update dependency vuetify to v2.5.5 [#53](https://github.com/mbround18/foundryvtt-docker/pull/53) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
311 | - Update dependency webpack to v5.40.0 [#49](https://github.com/mbround18/foundryvtt-docker/pull/49) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
312 | - Update dependency @babel/preset-env to v7.14.7 [#50](https://github.com/mbround18/foundryvtt-docker/pull/50) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
313 | - Update dependency vuetify to v2.5.4 [#47](https://github.com/mbround18/foundryvtt-docker/pull/47) ([@renovate-bot](https://github.com/renovate-bot) [@mbround18](https://github.com/mbround18) [@renovate[bot]](https://github.com/renovate[bot]))
314 | - Update dependency sass to v1.35.1 [#48](https://github.com/mbround18/foundryvtt-docker/pull/48) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
315 | - Update dependency nuxt to v2.15.7 [#43](https://github.com/mbround18/foundryvtt-docker/pull/43) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
316 | - Update babel monorepo to v7.14.6 [#44](https://github.com/mbround18/foundryvtt-docker/pull/44) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
317 | - Update dependency webpack to v5.39.0 [#45](https://github.com/mbround18/foundryvtt-docker/pull/45) ([@renovate-bot](https://github.com/renovate-bot) [@mbround18](https://github.com/mbround18) [@renovate[bot]](https://github.com/renovate[bot]))
318 | - Update dependency sass to v1.35.0 [#46](https://github.com/mbround18/foundryvtt-docker/pull/46) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
319 | - Update dependency @nuxtjs/vuetify to v1.12.1 [#42](https://github.com/mbround18/foundryvtt-docker/pull/42) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
320 | - Update babel monorepo to v7.14.5 [#41](https://github.com/mbround18/foundryvtt-docker/pull/41) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
321 | - Update dependency @auto-it/core to v10.29.3 [#39](https://github.com/mbround18/foundryvtt-docker/pull/39) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
322 | - Update dependency auto to v10.29.3 [#40](https://github.com/mbround18/foundryvtt-docker/pull/40) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
323 | - Update dependency webpack-cli to v4.7.2 [#38](https://github.com/mbround18/foundryvtt-docker/pull/38) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
324 | - Update dependency webpack-cli to v4.7.1 [#37](https://github.com/mbround18/foundryvtt-docker/pull/37) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
325 | - Update dependency @yarnpkg/pnpify to v3.0.0-rc.6 [#35](https://github.com/mbround18/foundryvtt-docker/pull/35) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
326 | - Update dependency vuetify to v2.5.3 [#33](https://github.com/mbround18/foundryvtt-docker/pull/33) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
327 | - Update dependency vuetify to v2.5.2 [#31](https://github.com/mbround18/foundryvtt-docker/pull/31) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
328 | - Update dependency supports-color to v9.0.1 [#29](https://github.com/mbround18/foundryvtt-docker/pull/29) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
329 | - Update dependency @babel/preset-env to v7.14.4 [#28](https://github.com/mbround18/foundryvtt-docker/pull/28) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
330 | - Update dependency webpack to v5.38.1 [#27](https://github.com/mbround18/foundryvtt-docker/pull/27) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
331 | - Update dependency webpack to v5.38.0 [#26](https://github.com/mbround18/foundryvtt-docker/pull/26) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
332 | - Update dependency webpack to v5.37.1 [#19](https://github.com/mbround18/foundryvtt-docker/pull/19) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
333 |
334 | #### ⚠️ Pushed to `main`
335 |
336 | - Create LICENSE.md ([@mbround18](https://github.com/mbround18))
337 | - Create FUNDING.yml ([@mbround18](https://github.com/mbround18))
338 | - Create .kodiak.toml ([@mbround18](https://github.com/mbround18))
339 |
340 | #### 📝 Documentation
341 |
342 | - Update dependency sass to v1.34.1 [#34](https://github.com/mbround18/foundryvtt-docker/pull/34) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
343 | - Update README.md [#24](https://github.com/mbround18/foundryvtt-docker/pull/24) ([@mbround18](https://github.com/mbround18))
344 | - [ImgBot] Optimize images [#21](https://github.com/mbround18/foundryvtt-docker/pull/21) ([@ImgBotApp](https://github.com/ImgBotApp) [@imgbot[bot]](https://github.com/imgbot[bot]))
345 |
346 | #### 🔩 Dependency Updates
347 |
348 | - Pin dependencies [#22](https://github.com/mbround18/foundryvtt-docker/pull/22) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
349 |
350 | #### Authors: 6
351 |
352 | - [@imgbot[bot]](https://github.com/imgbot[bot])
353 | - [@kodiakhq[bot]](https://github.com/kodiakhq[bot])
354 | - [@renovate[bot]](https://github.com/renovate[bot])
355 | - Imgbot ([@ImgBotApp](https://github.com/ImgBotApp))
356 | - Michael ([@mbround18](https://github.com/mbround18))
357 | - WhiteSource Renovate ([@renovate-bot](https://github.com/renovate-bot))
358 |
359 | ---
360 |
361 | # v1.0.0 (Thu May 27 2021)
362 |
363 | #### 💥 Breaking Change
364 |
365 | - Mbround18/release ready [#20](https://github.com/mbround18/foundryvtt-docker/pull/20) ([@mbround18](https://github.com/mbround18))
366 |
367 | #### 🐛 Bug Fix
368 |
369 | - Update babel monorepo to v7.14.3 [#18](https://github.com/mbround18/foundryvtt-docker/pull/18) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
370 | - Update babel monorepo to v7.14.2 [#17](https://github.com/mbround18/foundryvtt-docker/pull/17) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
371 | - Update dependency webpack to v5.37.0 [#16](https://github.com/mbround18/foundryvtt-docker/pull/16) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
372 | - Update dependency webpack-cli to v4.7.0 [#14](https://github.com/mbround18/foundryvtt-docker/pull/14) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
373 | - Update dependency webpack to v5.36.2 [#13](https://github.com/mbround18/foundryvtt-docker/pull/13) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
374 | - Update dependency html-webpack-plugin to v5 [#15](https://github.com/mbround18/foundryvtt-docker/pull/15) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
375 | - Update babel monorepo [#12](https://github.com/mbround18/foundryvtt-docker/pull/12) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
376 | - Pin dependencies [#11](https://github.com/mbround18/foundryvtt-docker/pull/11) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
377 | - Configure Renovate [#10](https://github.com/mbround18/foundryvtt-docker/pull/10) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
378 | - Removed the uploading zip and simplified uploading process [#6](https://github.com/mbround18/foundryvtt-docker/pull/6) (no-reply@bruno.fyi [@mbround18](https://github.com/mbround18))
379 | - Updated readme, scripts, deps [#2](https://github.com/mbround18/foundryvtt-docker/pull/2) (no-reply@bruno.fyi [@mbround18](https://github.com/mbround18))
380 |
381 | #### ⚠️ Pushed to `main`
382 |
383 | - reduced docker image size ([@mbround18](https://github.com/mbround18))
384 | - Updated deps ([@mbround18](https://github.com/mbround18))
385 | - Merge branch 'master' of github.com:mbround18/foundryvtt-docker ([@mbround18](https://github.com/mbround18))
386 | - Create CODEOWNERS ([@mbround18](https://github.com/mbround18))
387 | - Update README.md ([@mbround18](https://github.com/mbround18))
388 | - Replaced line endings ([@mbround18](https://github.com/mbround18))
389 | - Updated to support wget method (no-reply@bruno.fyi)
390 | - remove development modules (no-reply@bruno.fyi)
391 | - Build web app in the container (no-reply@bruno.fyi)
392 | - Removed githubs workflows' (no-reply@bruno.fyi)
393 | - Cleaned up readme (no-reply@bruno.fyi)
394 | - Uploader :) (no-reply@bruno.fyi)
395 | - Create dockerimage.yml ([@mbround18](https://github.com/mbround18))
396 | - added a new line (no-reply@bruno.fyi)
397 | - Readme update (no-reply@bruno.fyi)
398 | - dockerfile and shell script (no-reply@bruno.fyi)
399 | - Initial commit (no-reply@bruno.fyi)
400 |
401 | #### 🔩 Dependency Updates
402 |
403 | - Bump axios from 0.19.2 to 0.21.1 [#8](https://github.com/mbround18/foundryvtt-docker/pull/8) ([@dependabot[bot]](https://github.com/dependabot[bot]))
404 | - Bump ini from 1.3.5 to 1.3.8 [#7](https://github.com/mbround18/foundryvtt-docker/pull/7) ([@dependabot[bot]](https://github.com/dependabot[bot]))
405 | - Bump elliptic from 6.5.2 to 6.5.3 [#4](https://github.com/mbround18/foundryvtt-docker/pull/4) ([@dependabot[bot]](https://github.com/dependabot[bot]))
406 | - Bump lodash from 4.17.15 to 4.17.19 [#3](https://github.com/mbround18/foundryvtt-docker/pull/3) ([@dependabot[bot]](https://github.com/dependabot[bot]))
407 |
408 | #### Authors: 5
409 |
410 | - [@dependabot[bot]](https://github.com/dependabot[bot])
411 | - [@renovate[bot]](https://github.com/renovate[bot])
412 | - Michael ([@mbround18](https://github.com/mbround18))
413 | - Michael Bruno (no-reply@bruno.fyi)
414 | - WhiteSource Renovate ([@renovate-bot](https://github.com/renovate-bot))
415 |
--------------------------------------------------------------------------------
/Cargo.toml:
--------------------------------------------------------------------------------
1 | [workspace]
2 | resolver = "2"
3 | members = [
4 | "server",
5 | ]
6 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | ARG RUST_VERSION=1.86
2 | ARG NODE_VERSION=22
3 | FROM rust:${RUST_VERSION}-alpine AS builder
4 |
5 | WORKDIR /application
6 |
7 | COPY Cargo.toml Cargo.lock ./
8 | COPY server/Cargo.toml server/
9 |
10 | RUN apk add --no-cache \
11 | musl-dev \
12 | build-base \
13 | openssl-dev \
14 | pkgconfig \
15 | curl \
16 | bash \
17 | cmake
18 |
19 |
20 | RUN --mount=type=cache,target=/usr/local/cargo/registry \
21 | cargo fetch
22 |
23 | COPY . .
24 |
25 | RUN --mount=type=cache,target=/usr/local/cargo/registry \
26 | rustup target add x86_64-unknown-linux-musl && \
27 | cargo build --release --target x86_64-unknown-linux-musl \
28 | && mv target/x86_64-unknown-linux-musl/release/foundry-watcher target/release/foundry-watcher
29 |
30 | FROM node:${NODE_VERSION}-alpine AS runtime
31 |
32 | ARG CROC_VERSION=10.2.2
33 | RUN apk add --no-cache \
34 | curl \
35 | iproute2 \
36 | net-tools \
37 | shadow \
38 | sudo \
39 | bash \
40 | && curl -L https://github.com/schollz/croc/releases/download/v${CROC_VERSION}/croc_v${CROC_VERSION}_Linux-64bit.tar.gz \
41 | | tar -xz -C /usr/local/bin/ \
42 | && groupdel $(getent group 1000 | cut -d: -f1) 2>/dev/null || true \
43 | && userdel -f $(getent passwd 1000 | cut -d: -f1) 2>/dev/null || true \
44 | && groupadd -g 1001 sudo \
45 | && groupadd -g 1000 node \
46 | && useradd -m -u 1000 -g 1000 -s /bin/bash node \
47 | && usermod -aG sudo node \
48 | && echo "node ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
49 |
50 | # Copy the binary ensuring it exists and is executable
51 | COPY --from=builder --chmod=0755 /application/target/release/foundry-watcher /usr/local/bin/foundry-watcher
52 | # Add better verification that the file exists and is executable
53 | RUN ls -la /usr/local/bin/foundry-watcher && \
54 | chmod +x /usr/local/bin/foundry-watcher && \
55 | chown node:node /usr/local/bin/foundry-watcher
56 |
57 | ENV APPLICATION_HOST="foundry.vtt" \
58 | APPLICATION_PORT="4444" \
59 | SSL_PROXY="true" \
60 | APPLICATION_DIR="/foundryvtt" \
61 | DATA_DIR="/foundrydata" \
62 | STATIC_FILES_DIR="/foundry-watcher/frontend" \
63 | SERVER_PORT="4444" \
64 | SERVER_HOST="0.0.0.0" \
65 | TARGET_DIR="/foundryvtt"
66 |
67 | EXPOSE ${APPLICATION_PORT}
68 |
69 | WORKDIR ${DATA_DIR}
70 | COPY ./server/static /foundry-watcher/frontend
71 | RUN mkdir -p /foundryvtt /foundrydata /foundry-watcher/frontend \
72 | && chown -R node:node /foundry-watcher/frontend \
73 | && chmod -R 755 /foundry-watcher/frontend \
74 | && chown -R node:node /foundryvtt \
75 | && chmod -R 755 /foundryvtt \
76 | && chown -R node:node /foundrydata \
77 | && chmod -R 755 /foundrydata \
78 | && npm install -g npm
79 |
80 | USER node
81 |
82 | RUN ls -la /usr/local/bin/foundry-watcher && \
83 | chmod +x /usr/local/bin/foundry-watcher && \
84 | chown node:node /usr/local/bin/foundry-watcher
85 |
86 |
87 | # Set the entrypoint to run the Rust application directly
88 | ENTRYPOINT ["/usr/local/bin/foundry-watcher"]
89 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | # BSD 3-Clause License
2 |
3 | Copyright (c) 2024, MBRound18
4 | All rights reserved.
5 |
6 | Redistribution and use in source and binary forms, with or without
7 | modification, are permitted provided that the following conditions are met:
8 |
9 | 1. Redistributions of source code must retain the above copyright notice, this
10 | list of conditions and the following disclaimer.
11 |
12 | 2. Redistributions in binary form must reproduce the above copyright notice,
13 | this list of conditions and the following disclaimer in the documentation
14 | and/or other materials provided with the distribution.
15 |
16 | 3. Neither the name of the copyright holder nor the names of its
17 | contributors may be used to endorse or promote products derived from
18 | this software without specific prior written permission.
19 |
20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | BSD 3-Clause License
2 |
3 | Copyright (c) 2022, Michael Bruno
4 | All rights reserved.
5 |
6 | Redistribution and use in source and binary forms, with or without
7 | modification, are permitted provided that the following conditions are met:
8 |
9 | 1. Redistributions of source code must retain the above copyright notice, this
10 | list of conditions and the following disclaimer.
11 |
12 | 2. Redistributions in binary form must reproduce the above copyright notice,
13 | this list of conditions and the following disclaimer in the documentation
14 | and/or other materials provided with the distribution.
15 |
16 | 3. Neither the name of the copyright holder nor the names of its
17 | contributors may be used to endorse or promote products derived from
18 | this software without specific prior written permission.
19 |
20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 |
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | .PHONY: build lint
2 |
3 | lint:
4 | @npx -y prettier --write .
5 | @cargo fmt
6 | @cargo clippy
7 |
8 | build: lint
9 | @cargo build
10 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | # FoundryVTT Docker
4 |
5 |
Option 1: Download using URL
22 |Option 2: Upload ZIP file directly
40 |