Skip to content

Commit b6aa9e5

Browse files
committed
Merge branch 'dev' into prod
2 parents ed4d15e + 08a0f56 commit b6aa9e5

27 files changed

Lines changed: 1787 additions & 147 deletions

File tree

.github/workflows/beta_deployment.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919

2020
jobs:
2121
build_server:
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout code
2525
uses: actions/checkout@v3.5.3
@@ -51,13 +51,13 @@ jobs:
5151
run: docker push registry.digitalocean.com/uoft-orientation/orientation-server:beta
5252

5353
build_client:
54-
runs-on: ubuntu-20.04
54+
runs-on: ubuntu-latest
5555
needs:
5656
- build_server
5757
steps:
5858
- name: Checkout code
5959
uses: actions/checkout@v3.5.3
60-
60+
6161
- name: Clean up Docker to free up space (before build)
6262
run: |
6363
docker system prune -f
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: Push client image to container registry
9292
run: docker push registry.digitalocean.com/uoft-orientation/orientation-client:beta
93-
93+
9494
- name: Clean up Docker to free up space (after build)
9595
run: |
9696
docker system prune -f
@@ -101,7 +101,7 @@ jobs:
101101
# run: doctl registry garbage-collection start --include-untagged-manifests --force uoft-orientation
102102

103103
deploy_beta:
104-
runs-on: ubuntu-20.04
104+
runs-on: ubuntu-latest
105105
needs:
106106
- build_client
107107
- build_server

.github/workflows/prod_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818

1919
jobs:
2020
build_server:
21-
runs-on: ubuntu-20.04
21+
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout code
2424
uses: actions/checkout@v3.5.3
@@ -44,7 +44,7 @@ jobs:
4444
run: docker push registry.digitalocean.com/uoft-orientation/orientation-server:prod
4545

4646
build_client:
47-
runs-on: ubuntu-20.04
47+
runs-on: ubuntu-latest
4848
steps:
4949
- name: Checkout code
5050
uses: actions/checkout@v3.5.3

client/assets/cursor/cursor.png

1.43 KB
Loading

client/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
"dependencies": {
2121
"@react-pdf/renderer": "^3.1.12",
2222
"@reduxjs/toolkit": "^1.9.5",
23+
"@splinetool/react-spline": "^4.0.0",
24+
"@splinetool/runtime": "^1.10.2",
2325
"@tanstack/react-table": "^8.9.3",
2426
"axios": "^1.4.0",
2527
"email-validator": "^2.0.4",
@@ -65,4 +67,4 @@
6567
"vite": "^4.3.9",
6668
"vite-plugin-rewrite-all": "^1.0.1"
6769
}
68-
}
70+
}

client/src/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { getUserInfo } from './state/user/saga';
1717

1818
import { LandingPage } from './pages/Initial/LandingPage';
1919

20-
const readyForFrosh = true;
20+
const readyForFrosh = false;
2121

2222
export default function App() {
2323
const dispatch = useDispatch();

client/src/App.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@include devices(tablet) {
1010
user-select: none;
1111
}
12-
cursor: url('../assets/cursor/cursor-2t4.png'), auto;
12+
cursor: url('../assets/cursor/cursor.png'), auto;
1313
}
1414

1515
:root {
1.43 KB
Loading
1.38 MB
Loading
-840 KB
Loading

client/src/components/ImageCarousel/ImageCarousel.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
padding: 15px;
1414
border-radius: 15px;
1515
margin-bottom: 55px;
16-
cursor: url('../../../assets/cursor/cursor-2t4.png'), auto; // Apply custom cursor here
16+
cursor: url('../../../assets/cursor/cursor.png'), auto; // Apply custom cursor here
1717
height: calc(350px - 50px);
1818

1919
@include devices(tablet) {

0 commit comments

Comments
 (0)