-
9 | ${Entries}
10 |
11 |
-
12 | 13 | 14 | 15 | 16 |17 | 18 |
19 |
20 |
├── assets └── screenshot.png ├── TodoFrontend ├── wwwroot │ ├── favicon.ico │ ├── index.html │ ├── base.css │ └── index.css ├── TodoFrontend.Client.fsproj ├── Startup.fs ├── template.html └── Main.fs ├── TodoBackend ├── appsettings.Development.json ├── appsettings.json ├── Properties │ └── launchSettings.json ├── FullstackWasmFSharpAppBackend.fsproj └── Program.fs ├── LICENSE.md ├── FullstackWasmFSharpApp.sln ├── README.md └── .gitignore /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delneg/FullstackWasmFSharpApp/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /TodoFrontend/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delneg/FullstackWasmFSharpApp/HEAD/TodoFrontend/wwwroot/favicon.ico -------------------------------------------------------------------------------- /TodoBackend/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /TodoBackend/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /TodoBackend/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "FullstackWasmFSharpAppBackend": { 4 | "commandName": "Project", 5 | "dotnetRunMessages": true, 6 | "launchBrowser": false, 7 | "applicationUrl": "http://localhost:8080", 8 | "environmentVariables": { 9 | "ASPNETCORE_ENVIRONMENT": "Development" 10 | } 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TodoFrontend/wwwroot/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |