- It allows controlling events from your network drive
- It allows a simple UI for your kid to launch a zoom session
Before running, you should (manually) create the events file. This is a temporary step until we know what kind of input we can parse.
- You need to create "resources" folder under src/. (You can create this folder as a symbolic link to your network drive.)
- Create an "events.ts" file in the resources folder. Example:
export const HEADLINE = "מערכת שעות"
export const EVENTS = [
{
title: 'שבת',
allDay: true,
start: new Date(2020, 3, 18),
end: new Date(2020, 3, 19),
},
{
title: 'לימודים מרחוק',
link: "https://zoom.us/j/1234567890",
start: new Date(2020, 3, 18, 8, 30),
end: new Date(2020, 3, 18, 9),
}
]In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.