···9To get started with this template, simply paste this command into your terminal:
1011```bash
12-bun install && bun install -g turbo && cp apps/aqua/.env.example apps/aqua/.env &&
13-bun run db:migrate
14```
15Running on a Mac may also require adding @libsql/darwin-x64 dependency
16
···9To get started with this template, simply paste this command into your terminal:
1011```bash
12+pnpm install && pnpm install -g turbo && cp apps/aqua/.env.example apps/aqua/.env &&
13+pnpm run db:migrate
14```
15Running on a Mac may also require adding @libsql/darwin-x64 dependency
16
···1CREATE TABLE `follow` (
2 `follower` text PRIMARY KEY NOT NULL,
3- `followed` text PRIMARY KEY NOT NULL,
4 `created_at` text NOT NULL
5);
6--> statement-breakpoint
···1CREATE TABLE `follow` (
2 `follower` text PRIMARY KEY NOT NULL,
3+ `followed` text NOT NULL,
4 `created_at` text NOT NULL
5);
6--> statement-breakpoint