Find a file
2025-05-18 11:48:40 -07:00
.docker/scripts/postgres Add events table 2025-05-13 23:24:02 -07:00
.github/workflows Persist users and orgs (#29) 2025-05-18 00:31:07 -07:00
.husky Add tests 2025-05-12 11:38:02 -07:00
.storybook Rework theme, file organization, org flow, etc (#25) 2025-05-17 01:38:43 -07:00
.vscode More cleanup 2025-05-11 22:56:45 -07:00
public Rework theme, file organization, org flow, etc (#25) 2025-05-17 01:38:43 -07:00
scripts Clean up i18n stuff 2025-05-15 21:04:56 -07:00
src More usage queries (#31) 2025-05-18 11:48:40 -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 Rework theme, file organization, org flow, etc (#25) 2025-05-17 01:38:43 -07:00
docker-compose.yml Modernize the template 2025-05-11 21:15:57 -07:00
drizzle.config.ts Make Audit logs write to and read from the DB (not vaporware) (#19) 2025-05-16 14:56: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 Persist users and orgs (#29) 2025-05-18 00:31:07 -07:00
package.json Persist users and orgs (#29) 2025-05-18 00:31:07 -07:00
playwright.config.ts Boilerplate 2025-05-06 15:10:41 -04:00
pnpm-lock.yaml Persist users and orgs (#29) 2025-05-18 00:31:07 -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-global-setup.ts Organize server actions (#30) 2025-05-18 09:49:40 -07:00
vitest-setup.ts Persist users and orgs (#29) 2025-05-18 00:31:07 -07:00
vitest.config.mts Persist users and orgs (#29) 2025-05-18 00:31:07 -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