Skip to content

Commit 097a719

Browse files
authored
Merge pull request #580 from ddps-lab/frontend
Fixed to HYU
2 parents c05ce8e + ffa857d commit 097a719

8 files changed

Lines changed: 15 additions & 14 deletions

File tree

.github/workflows/sync.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_KMUBIGDATA_PROD_ACCESS_KEY_ID }}
13-
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_KMUBIGDATA_PROD_SECRET_ACCESS_KEY }}
12+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_HYUDDPS_WEB_ACCESS_KEY_ID }}
13+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_HYUDDPS_WEB_SECRET_ACCESS_KEY }}
1414
AWS_DEFAULT_REGION: "us-west-2"
1515

1616
jobs:
@@ -21,4 +21,4 @@ jobs:
2121
- name: "Sync with AWS S3"
2222
run: aws s3 sync ./frontend/build/ s3://${{ secrets.AWS_SPOTLAKE_S3_BUCKET_NAME }} --acl public-read --delete
2323
- name: "Create Invalidation"
24-
run: aws cloudfront create-invalidation --distribution-id E2VA9I0M7YAVHW --paths "/*"
24+
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.AWS_SPOTLAKE_CLOUDFRONT_DISTRIBUTION_ID }} --paths "/*"

frontend/build/asset-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"files": {
33
"main.css": "/static/css/main.95bea462.css",
4-
"main.js": "/static/js/main.dd8d7474.js",
4+
"main.js": "/static/js/main.631c4a40.js",
55
"static/js/488.a88b8761.chunk.js": "/static/js/488.a88b8761.chunk.js",
66
"index.html": "/index.html",
77
"main.95bea462.css.map": "/static/css/main.95bea462.css.map",
8-
"main.dd8d7474.js.map": "/static/js/main.dd8d7474.js.map",
8+
"main.631c4a40.js.map": "/static/js/main.631c4a40.js.map",
99
"488.a88b8761.chunk.js.map": "/static/js/488.a88b8761.chunk.js.map"
1010
},
1111
"entrypoints": [
1212
"static/css/main.95bea462.css",
13-
"static/js/main.dd8d7474.js"
13+
"static/js/main.631c4a40.js"
1414
]
1515
}

frontend/build/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="SpotLake-Diverse Spot Instance Dataset Archive Service"/><link rel="shortcut icon" href="/favicon.png" type="image/x-icon"/><title>SpotLake</title><script defer="defer" src="/static/js/main.dd8d7474.js"></script><link href="/static/css/main.95bea462.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="SpotLake-Diverse Spot Instance Dataset Archive Service"/><link rel="shortcut icon" href="/favicon.png" type="image/x-icon"/><title>SpotLake</title><script defer="defer" src="/static/js/main.631c4a40.js"></script><link href="/static/css/main.95bea462.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

frontend/build/static/js/main.631c4a40.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/build/static/js/main.dd8d7474.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

frontend/src/pages/contact/contact.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import React from "react";
2-
import {ContentBox, Box, SubTitle, Title, Wrapper, theme, CustomButton, ButtonICon} from "../../UI/styles";
2+
import {ContentBox, Box, Wrapper, theme, CustomButton, ButtonICon} from "../../UI/styles";
33
import {ThemeProvider} from "@mui/material/styles";
44

55
function Contact () {
66
return (
77
<Wrapper>
88
<Box column align={'flex-start'} gap={1} margin={`20px 0`}>
99
<ContentBox className="contact">
10-
SpotLake system is maintained by Distributed Data Processing System Lab (DDPS Lab, <a href="https://ddps.cloud" target={"_blank"}>https://ddps.cloud</a>) at Kookmin University.
11-
If you have any question, suggestion, or request, you can contact email (<a href="mailto:ddps@kookmin.ac.kr">ddps@kookmin.ac.kr</a>) or create issue on GitHub repository
10+
SpotLake system is maintained by Distributed Data Processing System Lab (DDPS Lab, <a href="https://ddps.cloud" target={"_blank"}>https://ddps.cloud</a>) at Hanyang University.
11+
<br />
12+
If you have any question, suggestion, or request, you can contact email (<a href="mailto:ddpslab@hanyang.ac.kr">ddpslab@hanyang.ac.kr</a>) or create issue on GitHub repository
1213
<ThemeProvider theme={theme}>
1314
<CustomButton
1415
size={"small"}

0 commit comments

Comments
 (0)