HttpSelfHostServer

This commit is contained in:
2023-06-09 15:27:24 -07:00
parent afd4cf8efe
commit fb3c3ce699
31 changed files with 393 additions and 48 deletions

View File

@ -0,0 +1,28 @@
.kanbn-column-wip .kanbn-column-task-list {
border-color: #6929c4;
}
.kanbn-column-next .kanbn-column-task-list {
border-color: #1192e8;
}
.kanbn-column-wait .kanbn-column-task-list {
border-color: #005d5d;
}
.kanbn-column-later .kanbn-column-task-list {
border-color: #9f1853;
}
.kanbn-column-maybe .kanbn-column-task-list {
border-color: #fa4d56;
}
.kanbn-column-friday .kanbn-column-task-list {
border-color: #570408;
}
.kanbn-column-done .kanbn-column-task-list {
border-color: #198038;
}
.kanbn-task-data-workload {
display: none;
}
.kanbn-task-data-relation {
display: block;
color: #198038;
}

View File

@ -0,0 +1,30 @@
---
startedColumns:
- 'In Progress'
completedColumns:
- Done
---
# Mesa FI Backlog
## Backlog
- [post-one-to-user-story](tasks/post-one-to-user-story.md)
- [in-tab-form-text-area-to-paste-over-excel](tasks/in-tab-form-text-area-to-paste-over-excel.md)
- [list-record-that-are-different](tasks/list-record-that-are-different.md)
- [list-records-that-are-out-of-sync](tasks/list-records-that-are-out-of-sync.md)
- [list-uat-tasks-that-are-no-longer-in-excel](tasks/list-uat-tasks-that-are-no-longer-in-excel.md)
## Todo
- [get-one-api](tasks/get-one-api.md)
## In Progress
- [nginx-static-html-in-old-school-form](tasks/nginx-static-html-in-old-school-form.md)
- [get-all-api](tasks/get-all-api.md)
- [switch-to-infragistics-data-grid](tasks/switch-to-infragistics-data-grid.md)
## Done
- [remove-static-file-controller](tasks/remove-static-file-controller.md)

View File

@ -0,0 +1,10 @@
---
created: 2023-05-27T14:11:17.265Z
updated: 2023-05-27T14:25:10.299Z
assigned: ""
progress: 0
tags: []
started: 2023-05-27T14:17:47.867Z
---
# Get All API

View File

@ -0,0 +1,9 @@
---
created: 2023-05-27T14:12:23.972Z
updated: 2023-05-27T14:18:00.018Z
assigned: ""
progress: 0
tags: []
---
# Get One API

View File

@ -0,0 +1,9 @@
---
created: 2023-05-27T14:14:11.591Z
updated: 2023-05-27T14:14:11.582Z
assigned: ""
progress: 0
tags: []
---
# In tab form text area to paste over Excel

View File

@ -0,0 +1,9 @@
---
created: 2023-05-27T14:14:31.083Z
updated: 2023-05-27T14:14:31.076Z
assigned: ""
progress: 0
tags: []
---
# List record that are different

View File

@ -0,0 +1,9 @@
---
created: 2023-05-27T14:14:43.826Z
updated: 2023-05-27T14:14:43.819Z
assigned: ""
progress: 0
tags: []
---
# List records that are out of sync

View File

@ -0,0 +1,9 @@
---
created: 2023-05-27T14:16:12.555Z
updated: 2023-05-27T14:16:12.547Z
assigned: ""
progress: 0
tags: []
---
# List UAT Tasks that are no longer in Excel

View File

@ -0,0 +1,10 @@
---
created: 2023-05-27T14:13:06.940Z
updated: 2023-05-27T14:17:56.583Z
assigned: ""
progress: 0
tags: []
started: 2023-05-27T14:17:56.583Z
---
# nginx Static HTML in old school form

View File

@ -0,0 +1,9 @@
---
created: 2023-05-27T14:12:09.089Z
updated: 2023-05-27T14:12:09.080Z
assigned: ""
progress: 0
tags: []
---
# Post one to User Story

View File

@ -0,0 +1,30 @@
---
created: 2023-05-27T14:29:10.454Z
updated: 2023-05-27T14:32:05.873Z
assigned: ""
progress: 1
tags: []
completed: 2023-05-27T00:00:00.000Z
---
# Remove StaticFile Controller
```c#
_ = config.Routes.MapHttpRoute("Static", "{*url}", new { controller = "StaticFiles", action = "Index" });
public class StaticFilesController : ApiController
{
[HttpGet]
public HttpResponseMessage Index(string url)
{
if (string.IsNullOrWhiteSpace(url))
url = "index.html";
//var path = GeneratePath(url);
var response = new HttpResponseMessage();
//response.Content = new StringContent(File.ReadAllText(path));
//response.Content.Headers.ContentType = ContentType(url);
return response;
}
}
```

View File

@ -0,0 +1,9 @@
---
created: 2023-05-27T14:17:35.499Z
updated: 2023-05-27T14:17:35.492Z
assigned: ""
progress: 0
tags: []
---
# Switch to Infragistics Data Grid