Find a file
2025-05-14 22:14:00 -07:00
.docker/scripts/postgres Add events table 2025-05-13 23:24:02 -07:00
.github/workflows Fix props 2025-05-14 22:14:00 -07:00
.husky Add tests 2025-05-12 11:38:02 -07:00
.storybook Events API 2025-05-13 21:50:55 -07:00
.vscode More cleanup 2025-05-11 22:56:45 -07:00
migrations Persist event data 2025-05-13 23:42:42 -07:00
public Danny's prototype 2025-05-14 15:28:15 -07:00
src Fix props 2025-05-14 22:14:00 -07:00
.env Fix props 2025-05-14 22:14:00 -07:00
.env.development Clean up database stuff 2025-05-11 23:38:44 -07:00
.env.test Clean up database stuff 2025-05-11 23:38:44 -07:00
.gitignore Danny's prototype 2025-05-14 15:28:15 -07:00
.prettierrc.json Modernize the template 2025-05-11 21:15:57 -07:00
.tool-versions Modernize the template 2025-05-11 21:15:57 -07:00
codecov.yml Boilerplate 2025-05-06 15:10:41 -04:00
components.json Modernize the template 2025-05-11 21:15:57 -07:00
docker-compose.yml Modernize the template 2025-05-11 21:15:57 -07:00
drizzle.config.ts Clean up database stuff 2025-05-11 23:38:44 -07:00
eslint.config.mjs Add eslint ignore 2025-05-13 22:33:30 -07:00
next-env.d.ts Modernize the template 2025-05-11 21:15:57 -07:00
next.config.ts Modernize the template 2025-05-11 21:15:57 -07:00
package.json Danny's prototype 2025-05-14 15:28:15 -07:00
playwright.config.ts Boilerplate 2025-05-06 15:10:41 -04:00
pnpm-lock.yaml Danny's prototype 2025-05-14 15:28:15 -07:00
postcss.config.mjs Modernize the template 2025-05-11 21:15:57 -07:00
README.md Clean up database stuff 2025-05-11 23:38:44 -07:00
tsconfig.json Debug middleware 2025-05-14 21:58:28 -07:00
vitest-setup.ts Clean up env vars 2025-05-14 21:40:25 -07:00
vitest.config.mts Fix ci 2025-05-11 21:34:43 -07:00

Roo Code Cloud

Run Locally

Configure Database

Install Docker Desktop for your platform.

Once installed, you can pull down a Postgres Docker image and run it:

docker compose up

Postgres will be running locally on port 5432 username postgres and password password.

Install Packages

First install pnpm using these instructions. If you're on MacOS the easiest option is to use Homebrew:

brew install pnpm

You can now install the required packages with:

pnpm install

Make sure your database is migrated:

pnpm db:migrate

If everything is working as expected you should be able to run any of the following without errors:

pnpm lint
pnpm check-types
pnpm test

Start Development Server

Copy .env.local.sample to .env.local and fill in the required secrets.

You can now start the Next.js app and Spotlight with:

pnpm dev

Your server will be running at localhost:3000