-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
113 lines (102 loc) · 1.89 KB
/
.gitignore
File metadata and controls
113 lines (102 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Rust
/target
**/target
out/
**/out/
build/
**/build/
dist/
**/dist/
# Python
__pycache__/
*.pyc
.venv/
**/.venv/
venv/
node_modules/
**/node_modules/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Roblox / Rojo
*.rbxl
*.rbxlx
*.rbxm
*.rbxmx
sourcemap.json
Packages/
*.local.project.json
roblox/out/
roblox/.harness.build.project.json
roblox/.harness.serve.project.json
roblox/src/ServerStorage/SampleData/AustinManifest.lua
# Compiled per-city manifest shards: regenerated by `arbx_cli emit-runtime-lua`
# and shipped via external storage at runtime (see WorldConfig.ManifestSource).
# Keep these directories on disk for local dev/harness paths but never commit
# the data so the repo stays small and the place file stays under Roblox's
# upload limit.
roblox/src/ServerStorage/SampleData/AustinManifestIndex.lua
roblox/src/ServerStorage/SampleData/AustinManifestChunks/
# OS / editor
.DS_Store
Thumbs.db
.vscode/
.idea/
.omx/
analysis/
.worktrees/
worktrees/
# Generated outputs / temp
out/
**/out/
exports/
tmp/
build/
**/build/
dist/
**/dist/
rust/out/
rust/fuzz/artifacts/
rust/fuzz/corpus/
rust/fuzz/coverage/
*.log
# Local secrets / env
.env
.env.*
*.pem
*.key
*.p12
*.pfx
*credentials*
*secrets*
.npmrc
# Cloudflare Wrangler
.dev.vars
.dev.vars.*
.wrangler/
**/.wrangler/
wrangler.local.toml
**/wrangler.local.toml
# Cloudflare API tokens / account state (never commit)
.cloudflare/
cloudflare-api-token.txt
CLOUDFLARE_API_TOKEN
CLOUDFLARE_ACCOUNT_ID
# Roblox Open Cloud API keys (never commit)
.roblox/
roblox-api-key.txt
ROBLOX_OPEN_CLOUD_API_KEY
roblox-secrets.json
# Node / TypeScript build artifacts (Cloudflare worker)
cloudflare/**/dist/
cloudflare/**/.wrangler/
cloudflare/**/node_modules/
# Local-only remote Studio harness profiles — machine-specific, never committed.
scripts/remote_studio_profiles.local.sh
scripts/remote_studio_profiles.*.local.sh
# Backups, swap, editor temp
*.bak
*.swp
*.swo
*~
.DS_Store