Going from down to up, we are stopping at prettierrc as far as making sure we have everything configured.

This commit is contained in:
2025-06-20 17:01:22 -05:00
commit 177705cfb1
70 changed files with 5205 additions and 0 deletions

8
scripts/next/update_container Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
git pull
mv ./next.config.js ./scripts/next/config/next.config.default.js
cp ./scripts/next/config/next.config.build.js ./next.config.js
sudo docker compose -f ./scripts/next/docker/compose.yaml down
sudo docker compose -f ./scripts/next/docker/compose.yaml build
sudo docker compose -f ./scripts/next/docker/compose.yaml up -d
cp ./scripts/next/config/next.config.default.js ./next.config.js