* refactor(auth): replace dashboard sessions with stateless tokens * feat(auth): harden session issuance and distributed enforcement * fix(proxy): preserve trusted proxy compatibility defaults * refactor: address dashboard auth review feedback * refactor: remove classic frontend and flatten web app
65 lines
2.5 KiB
Makefile
65 lines
2.5 KiB
Makefile
WEB_DIR = ./web
|
|
API_DIR = .
|
|
DEV_WEB_PORT ?= 5173
|
|
DEV_COMPOSE_FILE = docker-compose.dev.yml
|
|
DEV_POSTGRES_SERVICE = postgres
|
|
DEV_API_SERVICE = new-api
|
|
DEV_POSTGRES_DB = new-api
|
|
DEV_POSTGRES_USER = root
|
|
DEV_SQLITE_PATH ?= one-api.db
|
|
|
|
.PHONY: all build-web build-all-web start-api dev dev-api dev-api-rebuild dev-web reset-setup
|
|
|
|
all: build-all-web start-api
|
|
|
|
build-web:
|
|
@echo "Building web frontend..."
|
|
@cd $(WEB_DIR) && bun install --frozen-lockfile
|
|
@cd $(WEB_DIR) && DISABLE_ESLINT_PLUGIN='true' VITE_REACT_APP_VERSION=$$(cat ../VERSION) bun run build
|
|
|
|
build-all-web: build-web
|
|
|
|
start-api:
|
|
@echo "Starting api dev server..."
|
|
@cd $(API_DIR) && go run main.go &
|
|
|
|
dev-api:
|
|
@echo "Starting api services (docker)..."
|
|
@docker compose -f $(DEV_COMPOSE_FILE) up -d
|
|
|
|
dev-api-rebuild:
|
|
@echo "Rebuilding and starting api service (docker)..."
|
|
@docker compose -f $(DEV_COMPOSE_FILE) up -d --build $(DEV_API_SERVICE)
|
|
|
|
dev-web:
|
|
@echo "Starting web frontend dev server..."
|
|
@echo "Web frontend: http://localhost:$(DEV_WEB_PORT)"
|
|
@cd $(WEB_DIR) && bun install
|
|
@cd $(WEB_DIR) && bun run dev -- --host 0.0.0.0 --port $(DEV_WEB_PORT)
|
|
|
|
dev: dev-api dev-web
|
|
|
|
reset-setup:
|
|
@echo "Resetting local setup wizard state..."
|
|
@if docker compose -f $(DEV_COMPOSE_FILE) ps --services --status running | grep -qx "$(DEV_POSTGRES_SERVICE)"; then \
|
|
echo "Detected running docker dev PostgreSQL. Removing setup record and root users..."; \
|
|
docker compose -f $(DEV_COMPOSE_FILE) exec -T $(DEV_POSTGRES_SERVICE) \
|
|
psql -U $(DEV_POSTGRES_USER) -d $(DEV_POSTGRES_DB) \
|
|
-c 'DELETE FROM setups;' \
|
|
-c 'DELETE FROM users WHERE role = 100;' \
|
|
-c "DELETE FROM options WHERE key IN ('SelfUseModeEnabled', 'DemoSiteEnabled');"; \
|
|
echo "Restarting docker dev api so setup status is recalculated..."; \
|
|
docker compose -f $(DEV_COMPOSE_FILE) restart $(DEV_API_SERVICE); \
|
|
elif db_path="$${SQLITE_PATH:-$(DEV_SQLITE_PATH)}"; db_path="$${db_path%%\?*}"; [ -f "$$db_path" ]; then \
|
|
db_path="$${SQLITE_PATH:-$(DEV_SQLITE_PATH)}"; \
|
|
db_path="$${db_path%%\?*}"; \
|
|
echo "Detected local SQLite database: $$db_path"; \
|
|
sqlite3 "$$db_path" \
|
|
"DELETE FROM setups; DELETE FROM users WHERE role = 100; DELETE FROM options WHERE key IN ('SelfUseModeEnabled', 'DemoSiteEnabled');"; \
|
|
echo "SQLite setup state reset. Restart the local api process before testing the setup wizard."; \
|
|
else \
|
|
echo "No running docker dev PostgreSQL or local SQLite database found."; \
|
|
echo "Start the dev stack with 'make dev-api', or set SQLITE_PATH/DEV_SQLITE_PATH to your local SQLite database."; \
|
|
exit 1; \
|
|
fi
|