You've already forked openaccounting-server
forked from cybercinch/openaccounting-server
fix: correct environment variables in justfile run-dev command
- Fix OA_DATABASE_DRIVER to OA_DATABASEDRIVER (no underscore) - Fix OA_DATABASE_FILE to OA_DATABASEFILE (no underscore) - Change database filename from test2.db to dev.db for better naming - Ensure SQLite database is created in project root as expected 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2
justfile
2
justfile
@@ -22,7 +22,7 @@ run: build
|
|||||||
# Run with custom environment
|
# Run with custom environment
|
||||||
run-dev: build
|
run-dev: build
|
||||||
@echo "Starting server in development mode..."
|
@echo "Starting server in development mode..."
|
||||||
OA_DATABASE_DRIVER=sqlite OA_DATABASE_FILE=./dev.db OA_PORT=8080 ./server
|
OA_DATABASEDRIVER=sqlite OA_DATABASEFILE=./dev.db OA_PORT=8080 ./server
|
||||||
|
|
||||||
# Run tests
|
# Run tests
|
||||||
test:
|
test:
|
||||||
|
|||||||
Reference in New Issue
Block a user