Skip to content

Commit bb3421d

Browse files
committed
Re-arrange folder structure
1 parent d9a2beb commit bb3421d

File tree

235 files changed

+70
-33
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

235 files changed

+70
-33
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
* @GhostWriters/ds-scripts
22
/.github/ @GhostWriters/ds-scripts @GhostWriters/ds-apps @GhostWriters/ds-docs
3-
/.scripts/ @GhostWriters/ds-scripts
3+
/scripts/ @GhostWriters/ds-scripts
44
/compose/ @GhostWriters/ds-scripts @GhostWriters/ds-apps
55
/README.md @GhostWriters/ds-scripts @GhostWriters/ds-apps @GhostWriters/ds-docs

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ci:
99
core:
1010
- changed-files:
1111
- any-glob-to-any-file:
12-
["./*.sh", "./**/*.sh", ".scripts/*", ".scripts/**/*"]
12+
["./*.sh", "./**/*.sh", "scripts/*", "scripts/**/*"]
1313

1414

1515
repo:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ jobs:
1515
CI: true
1616
COMMIT_SHA: ${{ github.sha }}
1717
run: |
18-
while IFS= read -r line; do echo; sudo -E bash ./main.sh -vt "${line}" || exit 1; echo; done < <(git ls-files '.scripts/*.sh' | sed -E 's/^\.scripts\/(\w+)\.sh$/\1/')
18+
while IFS= read -r line; do echo; sudo -E bash ./main.sh -vt "${line}" || exit 1; echo; done < <(git ls-files 'scripts/*.sh' | sed -E 's/^\scripts\/(\w+)\.sh$/\1/')

.gitignore

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Cache directory - created in .scripts/install_docker.sh and .scripts/install_yq.sh
1+
# Cache directory - created in scripts/install_docker.sh and scripts/install_yq.sh
22
/.cache
33

44
# Dialog options file
@@ -8,24 +8,24 @@
88
/.dialogrc
99

1010
# Temporary folder
11-
/.temp/
11+
/temp/
1212

13-
# Compose instances directory - created by .scripts/compose_setup.sh for multiple compose instances
14-
/.instances/
13+
# Compose instances directory - created by scripts/compose_setup.sh for multiple compose instances
14+
/instances/
1515

1616
# Local directory
1717
/.local/
1818

1919
# Configuration directory
2020
/.config/
2121

22-
# Docker CLI plugins directory - referenced in .scripts/install_docker.sh for plugin installation
22+
# Docker CLI plugins directory - referenced in scripts/install_docker.sh for plugin installation
2323
/cli-plugins/
2424

25-
# Compose directory - created by .scripts/compose_setup.sh for storing compose files
25+
# Compose directory - created by scripts/compose_setup.sh for storing compose files
2626
/compose/
2727

28-
# Docker daemon configuration - created by .scripts/install_docker.sh
28+
# Docker daemon configuration - created by scripts/install_docker.sh
2929
/config.json
3030

3131
# Configuration directory - created by main.sh for storing app configs
@@ -46,7 +46,7 @@
4646
# Fatal log file
4747
/fatal.log
4848

49-
# Shared data directory - created by .scripts/compose_setup.sh for container volume mounts
49+
# Shared data directory - created by scripts/compose_setup.sh for container volume mounts
5050
/share/
5151

5252
# Alternative shared data directory - legacy path for backwards compatibility

0 commit comments

Comments
 (0)