Skip to content

Commit

Permalink
Replace "atj-platform" references with "forms", due to repo rename (#380
Browse files Browse the repository at this point in the history
)
  • Loading branch information
danielnaab authored Nov 9, 2024
1 parent 01f2783 commit 402acdd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions apps/spotlight/src/lib/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type GithubRepository = {

export const DEFAULT_REPOSITORY: GithubRepository = {
owner: 'gsa-tts',
repository: 'atj-platform',
repository: 'forms',
branch: 'main',
commit: 'main',
};
Expand All @@ -28,7 +28,7 @@ export const getGithubRepository = async (
const { execSync } = await import('child_process');
return {
owner: env.OWNER || 'gsa-tts',
repository: env.REPOSITORY || 'atj-platform',
repository: env.REPOSITORY || 'forms',
branch: env.BRANCH || 'main',
commit: execSync('git rev-parse HEAD').toString().trim(),
};
Expand Down
2 changes: 1 addition & 1 deletion infra/cdktf/__tests__/main-test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'cdktf/lib/testing/adapters/jest';

describe('atj-platform app stack', () => {
describe('Forms Platform app stack', () => {
it.todo('should be tested');
});
2 changes: 1 addition & 1 deletion infra/cdktf/src/lib/cloud.gov/node-astro.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class AstroService extends Construct {
new cloudfoundry.app.App(this, `${id}-app`, {
name: `${id}-app`,
space: spaceId,
dockerImage: `ghcr.io/gsa-tts/atj-platform/${imageName}`,
dockerImage: `ghcr.io/gsa-tts/forms/${imageName}`,
memory: 1024,
diskQuota: 4096,
healthCheckType: 'http',
Expand Down
4 changes: 2 additions & 2 deletions packages/server/src/lib/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type GithubRepository = {

export const DEFAULT_REPOSITORY: GithubRepository = {
owner: 'gsa-tts',
repository: 'atj-platform',
repository: 'forms',
branch: 'main',
commit: 'main',
};
Expand All @@ -28,7 +28,7 @@ export const getGithubRepository = async (
const { execSync } = await import('child_process');
return {
owner: env.OWNER || 'gsa-tts',
repository: env.REPOSITORY || 'atj-platform',
repository: env.REPOSITORY || 'forms',
branch: env.BRANCH || 'main',
commit: execSync('git rev-parse HEAD').toString().trim(),
};
Expand Down

0 comments on commit 402acdd

Please sign in to comment.