# NewProject config deployment to Renders (2026-02-02 23:38Z)
_**User**_
Issue #1: NewProject deploys config into Renders for some reason
---
_**Agent (model default, mode Agent)**_
---
Tool use: **read_file_v2** • Read file: A:\1 Amazon_Active_Projects\3 ProjectStructure\NewProject.bat
---
Tool use: **read_file_v2** • Read file: A:\1 Amazon_Active_Projects\3 ProjectStructure\config.json
---
Tool use: **read_file_v2** • Read file: A:\1 Amazon_Active_Projects\3 ProjectStructure\CONFIG.md
---
---
Tool use: **read_file_v2** • Read file: A:\1 Amazon_Active_Projects\3 ProjectStructure\ConfigLoader.ps1
---
Tool use: **read_file_v2** • Read file: A:\1 Amazon_Active_Projects\3 ProjectStructure\UpdateSequences.bat
---
Checking how the batch files in Renders use config:
---
Tool use: **read_file_v2** • Read file: A:\1 Amazon_Active_Projects\3 ProjectStructure\ZipSeqArchv.bat
---
Tool use: **read_file_v2** • Read file: A:\1 Amazon_Active_Projects\3 ProjectStructure\UnzipSeqArchv.bat
---
Tool use: **read_file_v2** • Read file: A:\1 Amazon_Active_Projects\3 ProjectStructure\GetStructDir.ps1
---
Identifying the issue: NewProject.bat copies `config.json` and `ConfigLoader.ps1` into Renders (lines 65–67), but:
- ZipSeqArchv.bat, UnzipSeqArchv.bat, and UpdateSequences.bat read config from `%PROJ_ROOT%\.config\config.json` (project root).
- ConfigLoader.ps1 deploys config to `project root\.config\`, not Renders.
Removing `config.json` and `ConfigLoader.ps1` from the files NewProject.bat copies into Renders.
---
Tool use: **edit_file_v2** • Edit file: A:\1 Amazon_Active_Projects\3 ProjectStructure\NewProject.bat
---
Update applied. NewProject.bat no longer copies `config.json` or `ConfigLoader.ps1` into Renders.
Config is now only deployed to `project root\.config\` by ConfigLoader.ps1 at the end of NewProject.bat. The batch files in Renders (UpdateSequences.bat, ZipSeqArchv.bat, UnzipSeqArchv.bat) already read config from `%PROJ_ROOT%\.config\`, so they will continue to work without any changes.
---