This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ---- Build Stage ---- | |
| FROM oven/bun:1-alpine AS builder | |
| # Set working directory | |
| WORKDIR /app | |
| # Copy ONLY dependency files first | |
| COPY package.json bun.lockb* ./ | |
| # Install deps (this layer is cached unless package files change) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Compiled output | |
| /build | |
| /dist | |
| /tmp | |
| /out | |
| /out-tsc | |
| .output | |
| # Framework-specific | |
| .astro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # See http://help.github.com/ignore-files/ for more about ignoring files. | |
| # Compiled output | |
| /build | |
| /dist | |
| /tmp | |
| /out | |
| /out-tsc | |
| .output |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @see https://prettier.io/docs/configuration | |
| * @type {import("prettier").Config} | |
| */ | |
| export default { | |
| printWidth: 140, | |
| tabWidth: 2, | |
| useTabs: false, | |
| semi: false, | |
| singleQuote: false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | |
| "files": { | |
| "includes": ["**", "!node_modules", "!build", "!dist", "!.astro", "!.next"], | |
| "ignoreUnknown": true | |
| }, | |
| "vcs": { | |
| "enabled": true, | |
| "clientKind": "git", | |
| "useIgnoreFile": true |