Skip to content

Commit e177c34

Browse files
authored
Fix create-effect-app startup (#60)
1 parent 327cd88 commit e177c34

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

examples/http-server/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.direnv/
22
node_modules/
33
dist/
4-
/data/
4+
/data/*
5+
!.gitkeep
56
.env
67
*.tsbuildinfo
78
.DS_Store

examples/http-server/data/.gitkeep

Whitespace-only changes.

examples/http-server/src/People.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { GroupId } from "./Domain/Group.js"
44
import type { PersonId } from "./Domain/Person.js"
55
import { Person, PersonNotFound } from "./Domain/Person.js"
66
import { policyRequire } from "./Domain/Policy.js"
7-
import type { PeopleRepo } from "./People/Repo.js"
7+
import { PeopleRepo } from "./People/Repo.js"
88
import { SqlLive } from "./Sql.js"
99

1010
export class People extends Effect.Service<People>()("People", {

0 commit comments

Comments
 (0)