Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .engram/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"project_name": "impenetrable-connect",
"artifact_store": "hybrid",
"strict_tdd": true,
"test_command": "make test",
"test_command": "make validate",
"default_language": "en",
"delivery_strategy": "ask-on-risk",
"execution_mode": "interactive",
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: help setup install clean lint gga format check test test-shared test-coverage \
.PHONY: help setup install clean lint gga format check test validate test-shared test-coverage \
dev dev-api dev-mock dev-web-api \
mobile mobile-mock mobile-mock-web mobile-api mobile-native mobile-clean mobile-web-mock mobile-web-api \
mobile-android mobile-android-native mobile-ios mobile-ios-native mobile-dev \
Expand Down Expand Up @@ -85,6 +85,7 @@ help:
@echo " make typecheck - Run TypeScript check"
@echo " make gga - Run Gentleman Guardian Angel"
@echo " make check - Run all checks (mobile + backend + gga)"
@echo " make validate - Run all checks and tests"
@echo " make db-reset - Full database reset and seed"
@echo ""
@echo " 🤖 ANDROID EMULATOR"
Expand Down Expand Up @@ -413,6 +414,8 @@ gga:

check: check-static gga

validate: check test

check-static: format check-static-mobile check-static-backend

check-mobile: check-static-mobile gga
Expand Down
2 changes: 2 additions & 0 deletions apps/backend/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { venturesRouter } from "./routes/ventures";
import { authRouter } from "./routes/auth";
import { productsRouter } from "./routes/products";
import { servicesRouter } from "./routes/services";
import { reservationsRouter } from "./routes/reservations";
import { ordersRouter } from "./routes/orders";
import { cors } from "hono/cors";
import { dbMiddleware } from "./middleware/db";
Expand Down Expand Up @@ -56,6 +57,7 @@ app.route("/v1/ventures", venturesRouter);
app.route("/v1/auth", authRouter);
app.route("/v1/products", productsRouter);
app.route("/v1/services", servicesRouter);
app.route("/v1/reservations", reservationsRouter);
app.route("/v1/orders", ordersRouter);

export default app;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "impenetrable_connect"."projects" ADD COLUMN "zzz_timezone" varchar(50) DEFAULT 'America/Argentina/Buenos_Aires' NOT NULL;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "impenetrable_connect"."projects" ALTER COLUMN "zzz_timezone" DROP DEFAULT;
Loading
Loading