Skip to content

Commit 17b93ec

Browse files
author
Jenner Torrence
committed
Replace offline cache with network-based Codex setup
- Remove large split archive files and offline cache setup - Add setup_for_codex.sh script that uses network during setup - Add clean_codex_cache.sh to remove any remaining cache files - Update CODEX_WORKFLOW.md with network-based setup instructions - Add AGENTS.md with guidance for AI development - Add Codex-specific gitignore
1 parent f6f0395 commit 17b93ec

14 files changed

+761
-1072
lines changed

.codex/.gitkeep

Whitespace-only changes.

.codex/reassemble.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

.gitignore.codex

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Flutter/Dart specific ignores
2+
.dart_tool/
3+
.flutter-plugins
4+
.flutter-plugins-dependencies
5+
.packages
6+
.pub-cache/
7+
.pub/
8+
build/
9+
generated_plugin_registrant.dart
10+
11+
# Android related
12+
**/android/.gradle
13+
**/android/captures/
14+
**/android/local.properties
15+
**/android/**/GeneratedPluginRegistrant.java
16+
17+
# iOS/XCode related
18+
**/ios/**/*.mode1v3
19+
**/ios/**/*.mode2v3
20+
**/ios/**/*.moved-aside
21+
**/ios/**/*.pbxuser
22+
**/ios/**/*.perspectivev3
23+
**/ios/**/*sync/
24+
**/ios/**/.sconsign.dblite
25+
**/ios/**/.tags*
26+
**/ios/**/.vagrant/
27+
**/ios/**/DerivedData/
28+
**/ios/**/Icon?
29+
**/ios/**/Pods/
30+
**/ios/**/.symlinks/
31+
**/ios/**/profile
32+
**/ios/**/xcuserdata
33+
**/ios/.generated/
34+
**/ios/Flutter/App.framework
35+
**/ios/Flutter/Flutter.framework
36+
**/ios/Flutter/Flutter.podspec
37+
**/ios/Flutter/Generated.xcconfig
38+
**/ios/Flutter/app.flx
39+
**/ios/Flutter/app.zip
40+
**/ios/Flutter/flutter_assets/
41+
**/ios/Flutter/flutter_export_environment.sh
42+
**/ios/ServiceDefinitions.json
43+
**/ios/Runner/GeneratedPluginRegistrant.*
44+
45+
# macOS
46+
**/macos/Flutter/GeneratedPluginRegistrant.swift
47+
**/macos/Flutter/Flutter-Debug.xcconfig
48+
**/macos/Flutter/Flutter-Release.xcconfig
49+
**/macos/Flutter/Flutter-Profile.xcconfig
50+
51+
# Symbolication related
52+
app.*.symbols
53+
54+
# Obfuscation related
55+
app.*.map.json
56+
57+
# Android Studio will place build artifacts here
58+
**/android/app/debug
59+
**/android/app/profile
60+
**/android/app/release
61+
62+
# Codex offline cache directories
63+
# We don't need these anymore as we use network during setup
64+
.codex/flutter-sdk/
65+
.codex/pub-cache/
66+
.codex/flutter-sdk.tar.gz
67+
.codex/pub-cache.tar.gz
68+
.codex/flutter-sdk.tar.gz.part.*
69+
.codex/pub-cache.tar.gz.part.*
70+
.codex/reassemble.sh
71+
.codex_setup_complete
72+
73+
# Temporary files
74+
*.log
75+
*.tmp
76+
.DS_Store
77+
*.swp
78+
*.bak

0 commit comments

Comments
 (0)