Skip to content

Commit 396192d

Browse files
committed
update: rename files inline with modern reccomendations for naming
1 parent dd6aade commit 396192d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
File renamed without changes.

Justfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ stop:
1616
update-prod:
1717
docker compose down -v
1818
sudo git pull
19-
just copy-file production-compose.yml.example compose.yml
19+
just copy-file production-compose.yaml.example compose.yaml
2020
docker compose up -d --build
2121

2222
# Restart the staging wiki after an update (stops, pulls, rebuilds, starts)
2323
update-staging:
2424
docker compose down -v
2525
sudo git pull
26-
just copy-file staging-compose.yml.example compose.yml
26+
just copy-file staging-compose.yaml.example compose.yaml
2727
docker compose up -d --build
2828

2929
# === Configuration Setup ===
3030

3131
# Setup production environment (copies prod compose and env files, installs prod systemd)
32-
setup-prod: (copy-file "production-compose.yml.example" "compose.yml") env sitemap-prod
32+
setup-prod: (copy-file "production-compose.yaml.example" "compose.yaml") env sitemap-prod
3333

3434
# Setup staging environment (copies staging compose and env files, installs staging systemd)
35-
setup-staging: (copy-file "staging-compose.yml.example" "compose.yml") env sitemap-staging
35+
setup-staging: (copy-file "staging-compose.yaml.example" "compose.yaml") env sitemap-staging
3636

3737
# Copy environment example to .env
3838
env: (copy-file ".example.env" ".env")

0 commit comments

Comments
 (0)