Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
52cd3cf299
|
|||
|
e89097619b
|
20
apps/guild-service/package.json
Normal file
20
apps/guild-service/package.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"name": "guild-service",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
"dev": "bun run src/index.ts"
|
||||||
|
},
|
||||||
|
"keywords": [],
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC",
|
||||||
|
"packageManager": "pnpm@10.33.2",
|
||||||
|
"dependencies": {
|
||||||
|
"@types/node": "^25.6.0",
|
||||||
|
"elysia": "^1.4.28",
|
||||||
|
"ts-node": "^10.9.2",
|
||||||
|
"typescript": "^6.0.3"
|
||||||
|
}
|
||||||
|
}
|
||||||
6
apps/guild-service/src/index.ts
Normal file
6
apps/guild-service/src/index.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import { Elysia } from "elysia";
|
||||||
|
|
||||||
|
const app = new Elysia().get("/", "Hello world!");
|
||||||
|
app.listen(3000);
|
||||||
|
|
||||||
|
export default app;
|
||||||
@@ -5,7 +5,8 @@
|
|||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs }:
|
outputs =
|
||||||
|
{ self, nixpkgs }:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = import nixpkgs { inherit system; };
|
pkgs = import nixpkgs { inherit system; };
|
||||||
|
|||||||
@@ -4,13 +4,15 @@
|
|||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
"dev": "bun turbo dev"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"packageManager": "pnpm@10.33.2",
|
"packageManager": "pnpm@10.33.2",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"bun": "^1.3.13",
|
||||||
"turbo": "^2.9.7"
|
"turbo": "^2.9.7"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
6314
pnpm-lock.yaml
generated
6314
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,5 @@
|
|||||||
packages:
|
packages:
|
||||||
- 'apps/*'
|
- 'apps/*'
|
||||||
- 'packages/*'
|
- 'packages/*'
|
||||||
|
allowBuilds:
|
||||||
|
bun: true
|
||||||
|
|||||||
Reference in New Issue
Block a user