-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- support new directus version - add prettier - prepare new version
- Loading branch information
Showing
9 changed files
with
885 additions
and
651 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,23 @@ | ||
# Misc. | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# IDE's | ||
.idea | ||
.vscode | ||
|
||
# Environment files | ||
.env | ||
.env*.local | ||
|
||
# Application | ||
node_modules | ||
directus/data | ||
|
||
# Build | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# | ||
# This is a simple docker-compose file that allows to develop the extension. | ||
# | ||
|
||
name: dhsp | ||
|
||
services: | ||
|
||
# Directus! | ||
# @see: https://docs.directus.io/self-hosted/config-options.html for all possible options | ||
# and see docs.directus.io in general for documentation on usage. | ||
directus: | ||
|
||
# If you want to build a custom image, comment out the line below: | ||
image: directus/directus:11.0.2 | ||
|
||
restart: unless-stopped | ||
ports: | ||
- '8055:8055' | ||
volumes: | ||
- ./data/database:/directus/database | ||
- ./data/extensions:/directus/extensions | ||
environment: | ||
SECRET: 'some-super-secret-here' | ||
DB_CLIENT: 'sqlite3' | ||
# Make sure that if you are in dev mode, the extension will auto reload! | ||
EXTENSIONS_AUTO_RELOAD: 'true' |
Oops, something went wrong.