Skip to content

Commit

Permalink
feat: Add MVP version of character-list
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenKirschbaum committed May 11, 2024
1 parent 7030056 commit 15f8fc9
Show file tree
Hide file tree
Showing 23 changed files with 2,765 additions and 289 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
role-session-name: github-action-deploy-prime-scout-app
- name: Deploy CDK stack
run: npx cdk deploy --app cdk.out --require-approval=never "*"
character-list-app:
deploy-character-list-app:
runs-on: ubuntu-latest
needs: build
permissions:
Expand Down
1 change: 1 addition & 0 deletions bin/character-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const app = new cdk.App();

new CharacterListStack(app, 'CharacterListStack', {
domainName: 'chars.theramo.re',
battlenetCredentialsSecretName: 'character-list-battlenet-oauth',
dnsDelegation: {
account: dnsAccountID,
roleName: 'CharsDnsDelegationRole',
Expand Down
3 changes: 1 addition & 2 deletions frontend/character-list/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>Character Overview</title>
</head>
<body>
<div id="root"></div>
Expand Down
Loading

0 comments on commit 15f8fc9

Please sign in to comment.