Add a Readme
This commit is contained in:
parent
4623d8838d
commit
ca9cb3caa0
|
@ -4,7 +4,7 @@ root = true
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
max_line_length = 100
|
max_line_length = 100
|
||||||
|
|
||||||
[*.{cs,cshtml,html,xml,js,css,csproj,json}]
|
[*.{cs,cshtml,html,xml,js,css,csproj,json,md}]
|
||||||
indent_style = tab
|
indent_style = tab
|
||||||
tab_width = 4
|
tab_width = 4
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
|
|
37
Readme.md
Normal file
37
Readme.md
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
# Blazor Start
|
||||||
|
|
||||||
|
This is a rewrite of my [New Tab Page project](https://github.com/NeilBrommer/NewTabPage) using
|
||||||
|
[Blazor](https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor).
|
||||||
|
|
||||||
|
## Structure
|
||||||
|
|
||||||
|
- Bookmark containers (tabs along the top)
|
||||||
|
- Bookmark groups
|
||||||
|
- Bookmarks
|
||||||
|
|
||||||
|
## To Do
|
||||||
|
|
||||||
|
- [x] Backend data services
|
||||||
|
- [ ] API Controllers
|
||||||
|
- [ ] Bookmark containers
|
||||||
|
- [ ] Bookmark groups
|
||||||
|
- [ ] Bookmarks
|
||||||
|
- [ ] Manage bookmark containers
|
||||||
|
- [x] Create
|
||||||
|
- [x] Delete
|
||||||
|
- [ ] Edit
|
||||||
|
- [ ] Manage bookmark groups
|
||||||
|
- [ ] Create
|
||||||
|
- [ ] Delete
|
||||||
|
- [ ] Edit
|
||||||
|
- [ ] Manage bookmarks
|
||||||
|
- [ ] Create
|
||||||
|
- [ ] Delete
|
||||||
|
- [ ] Edit
|
||||||
|
- [ ] Use [Refit](https://github.com/reactiveui/refit) for strongly typed API calls
|
||||||
|
- [ ] Support choosing between storing data on the server or in IndexedDB
|
||||||
|
|
||||||
|
## Dependancies
|
||||||
|
|
||||||
|
- [Spectre.css](https://picturepan2.github.io/spectre/)
|
||||||
|
- [Blazored LocalStorage](https://github.com/blazored/LocalStorage)
|
|
@ -12,6 +12,7 @@ EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{75B82AA8-0E35-4AB1-8C0D-07AD2377EDB5}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{75B82AA8-0E35-4AB1-8C0D-07AD2377EDB5}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
.editorconfig = .editorconfig
|
.editorconfig = .editorconfig
|
||||||
|
Readme.md = Readme.md
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
|
|
Loading…
Reference in a new issue