Skip to content

Commit f6a1e54

Browse files
author
colto
committed
add workflow_dispatch
1 parent c802f61 commit f6a1e54

File tree

7 files changed

+45
-3
lines changed

7 files changed

+45
-3
lines changed

.github/workflows/deploy-backend.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Deploy Backend
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [ main ]
67
paths:

.github/workflows/deploy-frontend.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Deploy Frontend
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [ main ]
67
paths:

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
*.pem
2+
*.openssh
3+
*.key
4+
5+
route-tables.json
6+
ccg-ec2-trust.json
7+
github-actions-oidc-trust.json
8+
9+
frontend/oac.json
10+
frontend/distribution.json
11+
frontend/bucket-policy.json
12+
13+
.env
14+
.env.*
15+
!.env.example
16+
!.env.production

backend/.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,9 @@ frontend/bucket-policy.json
1010
route-tables.json
1111

1212
.env.*
13-
!.env.example
13+
!.env.example
14+
15+
ccg-ec2-trust.json
16+
github-actions-oidc-trust.json
17+
18+
!.env.production

frontend/.env.production

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VITE_API_BASE_URL=

frontend/.gitignore

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,21 @@ dist-ssr
2222
*.njsproj
2323
*.sln
2424
*.sw?
25-
.env
25+
.env
26+
27+
*.pem
28+
*.openssh
29+
*.key
30+
31+
frontend/oac.json
32+
frontend/distribution.json
33+
frontend/bucket-policy.json
34+
route-tables.json
35+
36+
.env.*
37+
!.env.example
38+
39+
ccg-ec2-trust.json
40+
github-actions-oidc-trust.json
41+
42+
!.env.production

frontend/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Code Challenge Generator</title>
6+
<title>Reilly Labs | AI Project Portfolio</title>
7+
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
78
</head>
89
<body>
910
<div id="root"></div>

0 commit comments

Comments
 (0)