### Install Node.js Dependencies with npm Source: https://github.com/routerso/router/blob/main/README.md This command installs all required Node.js packages and dependencies for the Router.so project, as defined in the `package.json` file. ```sh npm install ``` -------------------------------- ### Start Router.so Development Server Source: https://github.com/routerso/router/blob/main/README.md This command initiates the local development server for the Router.so application, allowing you to access and test it in your browser. ```sh npm run dev ``` -------------------------------- ### Start Router.so with Docker Compose Source: https://github.com/routerso/router/blob/main/README.md This command builds and starts the Router.so application and its services using Docker Compose, providing a containerized development environment. ```sh docker compose up ``` -------------------------------- ### Clone Router.so Repository Source: https://github.com/routerso/router/blob/main/README.md This command clones the Router.so GitHub repository to your local machine and navigates into the main directory, preparing for further setup. ```sh git clone https://github.com/routerso/router.git cd router/main ``` -------------------------------- ### Run Database Migrations with tsx Source: https://github.com/routerso/router/blob/main/README.md This command executes the generated database migration scripts using `tsx`, applying schema changes to the PostgreSQL database. ```sh npm tsx lib/db/migrate.ts ``` -------------------------------- ### Generate Drizzle ORM Database Migrations Source: https://github.com/routerso/router/blob/main/README.md This command uses Drizzle Kit to generate database migration files based on the defined schema, preparing for database updates. ```sh npm drizzle-kit generate ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.