Skip to content

Commit

Permalink
add final slides & code
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-arold committed May 26, 2024
1 parent c961e4e commit 1b89630
Show file tree
Hide file tree
Showing 16 changed files with 631 additions and 800 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ node_modules
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/terminals.json

# misc
/.sass-cache
Expand Down
15 changes: 15 additions & 0 deletions .vscode/terminals.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"autorun": true,
"autokill": true,
"terminals": [
{
"name": "Docker",
"description": "Starts docker compose on startup",
"icon": "container",
"open": false,
"recycle": false,
"color": "terminal.ansiCyan",
"commands": ["docker-compose up -d", "exit"]
}
]
}
77 changes: 0 additions & 77 deletions TODO.md

This file was deleted.

7 changes: 4 additions & 3 deletions apps/eisenhower/INSTRUCTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ As a user I want to get task notifications whenever there is a task that's past
### Create Excel Export

As a user I want to be able to create an Excel export of the matrices in the app.
Each matrix should have its own tab in the excel file, and tasks should be represented as rows.
The excel export is generated asynchronously and the file is written to the path specified by the user.
As a user I want to be able to create an Excel export of a matrix.

Each task should have its own row in the file, format should be `.csv`.
The file is written to the path specified by the user.

## Other Tasks

Expand Down
Loading

0 comments on commit 1b89630

Please sign in to comment.