Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v4
- uses: biomejs/setup-biome@v2
with:
version: latest

- run: bun install
- run: bun check
- run: npm ci
- run: npm run check
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pnpm-debug.log*
yarn.lock
pnpm-lock.yaml
tsconfig.tsbuildinfo
package-lock.json
bun.lockb

# Mac shit
.DS_Store
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM oven/bun:latest
FROM node:slim

WORKDIR /app

COPY . .

ENV NODE_ENV=production
RUN bun install --frozen-lockfile --production
RUN bun pack
RUN npm ci
RUN npm run build

ENV HOST="0.0.0.0"
CMD [ "bun", "run", "./dist/server/entry.mjs" ]
CMD [ "node", "run", "./dist/server/entry.mjs" ]
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ Join the [Discord](https://discord.gg/FCYF3p99mr) for updates and discussion.

## Setup

Install the dependencies with `bun`:
Install the dependencies with `npm`:

```bash
bun i
npm i
```

## Development

Run the development web server:

```bash
bun dev
npm run dev
```

## License
Expand Down
2 changes: 1 addition & 1 deletion astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default defineConfig({
fs: {
allow: [
".",
// Allow `bun link @kixelated/moq`
// Allow `npm link @kixelated/moq`
fs.realpathSync(path.resolve("node_modules/@kixelated/moq")),
],
},
Expand Down
Loading