fix: make Codex worktree setup portable
This commit is contained in:
parent
110960a6f0
commit
a9e2b1a818
|
|
@ -0,0 +1,37 @@
|
||||||
|
# THIS IS AUTOGENERATED. DO NOT EDIT MANUALLY
|
||||||
|
version = 1
|
||||||
|
name = "Folo"
|
||||||
|
|
||||||
|
[setup]
|
||||||
|
script = '''
|
||||||
|
pnpm i
|
||||||
|
'''
|
||||||
|
|
||||||
|
[[actions]]
|
||||||
|
name = "web dev"
|
||||||
|
icon = "run"
|
||||||
|
command = "pnpm dev:web"
|
||||||
|
|
||||||
|
[[actions]]
|
||||||
|
name = "electron dev"
|
||||||
|
icon = "run"
|
||||||
|
command = '''
|
||||||
|
cd apps/desktop
|
||||||
|
pnpm dev:electron
|
||||||
|
'''
|
||||||
|
|
||||||
|
[[actions]]
|
||||||
|
name = "ios dev"
|
||||||
|
icon = "run"
|
||||||
|
command = '''
|
||||||
|
cd apps/mobile
|
||||||
|
pnpm ios
|
||||||
|
'''
|
||||||
|
|
||||||
|
[[actions]]
|
||||||
|
name = "android dev"
|
||||||
|
icon = "run"
|
||||||
|
command = '''
|
||||||
|
cd apps/mobile
|
||||||
|
pnpm android
|
||||||
|
'''
|
||||||
|
|
@ -37,8 +37,11 @@ apps/desktop/resources/cli
|
||||||
|
|
||||||
.wrangler
|
.wrangler
|
||||||
|
|
||||||
# Local agent artifacts
|
# Local agent artifacts, except the shared Codex environment
|
||||||
.codex/
|
.codex/*
|
||||||
|
!.codex/environments/
|
||||||
|
.codex/environments/*
|
||||||
|
!.codex/environments/environment.toml
|
||||||
|
|
||||||
# E2E outputs
|
# E2E outputs
|
||||||
/apps/desktop/e2e/playwright-report/
|
/apps/desktop/e2e/playwright-report/
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
# Files copied by Codex into managed worktrees
|
||||||
|
apps/desktop/.env
|
||||||
Loading…
Reference in New Issue