Use seed_database.sql to seed the dev database.
To validate use psql -h db -U $PGUSER to connect to db.
make -C .devcontainer makefile
-
Load the containers a. Load the devcontainer b. (or) use docker compose
docker compose -f docker-compose.yml -f docker-compose.local.yml up --build --force-recreate -d -
[Optional] Setup claude code using
claudecommand
npx create-react-app <appname>dotnet new webapi -o <project_name> --use-controllers --use-program-maindotnet new gitignoredotnet new apicontroller --actions --name <controller name>app.UseCors(builder =>
builder.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader()
);