@gricha/perry 0.3.15 → 0.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/perry-worker +0 -0
- package/dist/workspace/manager.js +32 -0
- package/package.json +1 -1
package/dist/perry-worker
CHANGED
|
Binary file
|
|
@@ -137,6 +137,37 @@ export class WorkspaceManager {
|
|
|
137
137
|
tempPrefix: 'ws-gitconfig',
|
|
138
138
|
});
|
|
139
139
|
}
|
|
140
|
+
async syncEnvironmentFile(containerName) {
|
|
141
|
+
const env = {
|
|
142
|
+
...this.config.credentials.env,
|
|
143
|
+
};
|
|
144
|
+
if (this.config.agents?.github?.token) {
|
|
145
|
+
env.GITHUB_TOKEN = this.config.agents.github.token;
|
|
146
|
+
}
|
|
147
|
+
if (this.config.agents?.claude_code?.oauth_token) {
|
|
148
|
+
env.CLAUDE_CODE_OAUTH_TOKEN = this.config.agents.claude_code.oauth_token;
|
|
149
|
+
}
|
|
150
|
+
if (Object.keys(env).length === 0) {
|
|
151
|
+
return;
|
|
152
|
+
}
|
|
153
|
+
const lines = Object.entries(env)
|
|
154
|
+
.map(([key, value]) => {
|
|
155
|
+
const escaped = value.includes(' ') || value.includes('"') || value.includes("'")
|
|
156
|
+
? `"${value.replace(/\\/g, '\\\\').replace(/"/g, '\\"')}"`
|
|
157
|
+
: value;
|
|
158
|
+
return `${key}=${escaped}`;
|
|
159
|
+
})
|
|
160
|
+
.sort();
|
|
161
|
+
const content = lines.join('\n') + '\n';
|
|
162
|
+
const tempFile = path.join(os.tmpdir(), `ws-env-${Date.now()}`);
|
|
163
|
+
try {
|
|
164
|
+
await fs.writeFile(tempFile, content);
|
|
165
|
+
await docker.copyToContainer(containerName, tempFile, '/etc/environment');
|
|
166
|
+
}
|
|
167
|
+
finally {
|
|
168
|
+
await fs.unlink(tempFile).catch(() => { });
|
|
169
|
+
}
|
|
170
|
+
}
|
|
140
171
|
async setupSSHKeys(containerName, workspaceName) {
|
|
141
172
|
if (!this.config.ssh) {
|
|
142
173
|
return;
|
|
@@ -189,6 +220,7 @@ export class WorkspaceManager {
|
|
|
189
220
|
async setupWorkspaceCredentials(containerName, workspaceName) {
|
|
190
221
|
await this.copyGitConfig(containerName);
|
|
191
222
|
await this.copyCredentialFiles(containerName);
|
|
223
|
+
await this.syncEnvironmentFile(containerName);
|
|
192
224
|
await syncAllAgents(containerName, this.config);
|
|
193
225
|
await this.copyPerryWorker(containerName);
|
|
194
226
|
await this.startWorkerServer(containerName);
|