### Install Dependencies with Bun Source: https://github.com/savareyhano/elysia-auth/blob/master/README.md Installs all project dependencies using the Bun package manager. ```bash bun install ``` -------------------------------- ### Create and Configure .env File Source: https://github.com/savareyhano/elysia-auth/blob/master/README.md Copies the example environment file to .env, which should then be configured with project-specific settings. ```bash cp .env.example .env ``` -------------------------------- ### Start Development Server Source: https://github.com/savareyhano/elysia-auth/blob/master/README.md Starts the ElysiaJS development server using Bun. This command is not needed when using Docker. ```bash bun run dev ``` -------------------------------- ### Start Docker Compose Source: https://github.com/savareyhano/elysia-auth/blob/master/README.md Starts the application services defined in the docker-compose.yml file in detached mode. ```bash docker compose up -d ``` -------------------------------- ### Clone Elysia Auth Repository Source: https://github.com/savareyhano/elysia-auth/blob/master/README.md Clones the Elysia Auth project from GitHub. This is the first step for both Docker and non-Docker setups. ```bash git clone https://github.com/savareyhano/elysia-auth.git ``` -------------------------------- ### Navigate to Project Directory Source: https://github.com/savareyhano/elysia-auth/blob/master/README.md Changes the current directory to the cloned Elysia Auth project folder. ```bash cd elysia-auth ``` -------------------------------- ### Access Swagger API Documentation Source: https://github.com/savareyhano/elysia-auth/blob/master/README.md Opens the Swagger UI in a web browser to view and interact with the available APIs. ```bash http://localhost:3000/swagger ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.