Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,18 @@ The only other accepted format is an empty string, meaning the date has not been
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.

## Getting the Environment Setup
Make sure to install git lfs before cloning to properly run videos

https://docs.github.com/en/repositories/working-with-files/managing-large-files/installing-git-large-file-storage


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

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

```shell
npm i

```

Your environment should now be set up!
Expand Down
2 changes: 1 addition & 1 deletion src/assets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ https://www.the-qrcode-generator.com/mycodes

# Business Cards
https://www.canva.com/design/DAFIa-vK2lo/KOgdvUYLq0wLn9ZNdzp11Q/edit?utm_source=onboarding
https://www.canva.com/design/DAFIa-vK2lo/KOgdvUYLq0wLn9ZNdzp11Q/edit?utm_content=DAFIa-vK2lo&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton
https://www.canva.com/design/DAFIa-vK2lo/KOgdvUYLq0wLn9ZNdzp11Q/edit?utm_content=DAFIa-vK2lo&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton
10 changes: 5 additions & 5 deletions src/data/EventsDatabase.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { EventObject } from '../tools/CustomTypes'

const semesterEnd = '5/30/25'
const semesterEnd = '5/31/25'

const EVENT_INFO: EventObject[] = [
// {
Expand All @@ -23,17 +23,17 @@ const EVENT_INFO: EventObject[] = [
{
title: 'Weekly Electrical Meeting',
description: 'The weekly meeting for the electrical sub-team. Talk about improved batteries, wiring, and more!',
date: new Date('TBD'),
time: 'TBD',
date: new Date('1/22/2025'),
time: '6:00 PM',
location: 'The ideas hub (second floor of the engineering building)',
weekly: true,
endDate: new Date(semesterEnd)
},
{
title: 'Weekly Mechanical Meeting',
description: 'The weekly meeting for the mechanical sub-team. Learn about the design aspects of robot and 3D model parts.',
date: new Date('TBD'),
time: 'TBD',
date: new Date('1/22/2025'),
time: '4:00 PM',
location: 'The ideas hub (second floor of the engineering building)',
weekly: true,
endDate: new Date(semesterEnd)
Expand Down
Loading