Remove migration lock file and update reset environment script to use dynamic working directory

This commit is contained in:
Peter Wood
2025-05-17 19:43:42 -04:00
parent 30db75270e
commit cf99168f8f
4 changed files with 1391 additions and 564 deletions

View File

@@ -1,5 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env bash
. "$(dirname -- "$0")/_/husky.sh"
echo "Running Biome checks before commit..." echo "Running Biome checks before commit..."
npm run check || exit 1 npm run check || exit 1

1945
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +0,0 @@
# Please do not edit this file manually
# It should be added in your version-control system (e.g., Git)
provider = "postgresql"

View File

@@ -8,7 +8,7 @@ set -o pipefail # Error if any command in a pipe fails
# Constants # Constants
readonly SCRIPT_NAME="$(basename "$0")" readonly SCRIPT_NAME="$(basename "$0")"
readonly WORK_DIR="/home/acedanger/dev/finance" readonly WORK_DIR="$(dirname "$(realpath "$0")")"
readonly REQUIRED_NODE_VERSION="20.19.0" # Minimum required version readonly REQUIRED_NODE_VERSION="20.19.0" # Minimum required version
# Functions # Functions