Skip to content

Commit 6027fe3

Browse files
authored
Merge pull request #37 from templerobotics/updating-meeting-events
Updating meeting events
2 parents 10e64c3 + 0cd1587 commit 6027fe3

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,18 @@ The only other accepted format is an empty string, meaning the date has not been
3535
There is information on changing certain data in [this README](./src/data/README.md). This includes things such as changing the photo galleries or adding new photos to them, adding to the home carousel, adding to the rocksat table, etc.
3636

3737
## Getting the Environment Setup
38+
Make sure to install git lfs before cloning to properly run videos
39+
40+
https://docs.github.com/en/repositories/working-with-files/managing-large-files/installing-git-large-file-storage
41+
3842

3943
It should be pretty simple getting the website set up on vscode. First you will need to download [Node.js](https://nodejs.org/en/).
4044

4145
Once the newest version of `Node.js` is installed, you can install the node packages with npm as follows
4246

4347
```shell
4448
npm i
49+
4550
```
4651

4752
Your environment should now be set up!

src/assets/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ https://www.the-qrcode-generator.com/mycodes
66

77
# Business Cards
88
https://www.canva.com/design/DAFIa-vK2lo/KOgdvUYLq0wLn9ZNdzp11Q/edit?utm_source=onboarding
9-
https://www.canva.com/design/DAFIa-vK2lo/KOgdvUYLq0wLn9ZNdzp11Q/edit?utm_content=DAFIa-vK2lo&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton
9+
https://www.canva.com/design/DAFIa-vK2lo/KOgdvUYLq0wLn9ZNdzp11Q/edit?utm_content=DAFIa-vK2lo&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton

src/data/EventsDatabase.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { EventObject } from '../tools/CustomTypes'
22

3-
const semesterEnd = '5/30/25'
3+
const semesterEnd = '5/31/25'
44

55
const EVENT_INFO: EventObject[] = [
66
// {
@@ -23,17 +23,17 @@ const EVENT_INFO: EventObject[] = [
2323
{
2424
title: 'Weekly Electrical Meeting',
2525
description: 'The weekly meeting for the electrical sub-team. Talk about improved batteries, wiring, and more!',
26-
date: new Date('TBD'),
27-
time: 'TBD',
26+
date: new Date('1/22/2025'),
27+
time: '6:00 PM',
2828
location: 'The ideas hub (second floor of the engineering building)',
2929
weekly: true,
3030
endDate: new Date(semesterEnd)
3131
},
3232
{
3333
title: 'Weekly Mechanical Meeting',
3434
description: 'The weekly meeting for the mechanical sub-team. Learn about the design aspects of robot and 3D model parts.',
35-
date: new Date('TBD'),
36-
time: 'TBD',
35+
date: new Date('1/22/2025'),
36+
time: '4:00 PM',
3737
location: 'The ideas hub (second floor of the engineering building)',
3838
weekly: true,
3939
endDate: new Date(semesterEnd)

0 commit comments

Comments
 (0)