Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karmek-k/asp-net-practice-todo
Practicing ASP.NET Core by creating a to-do list app.
https://github.com/karmek-k/asp-net-practice-todo
Last synced: 3 days ago
JSON representation
Practicing ASP.NET Core by creating a to-do list app.
- Host: GitHub
- URL: https://github.com/karmek-k/asp-net-practice-todo
- Owner: karmek-k
- Created: 2020-10-16T15:28:18.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-26T19:21:28.000Z (about 4 years ago)
- Last Synced: 2023-06-30T14:32:54.068Z (over 1 year ago)
- Language: C#
- Size: 741 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ASP.NET Core practice project - to-do list
A project I have created while studying ASP.NET MVC, Entity Framework and the .NET Core ecosystem in general.
I know that making to-do lists as portfolio projects is a meme, don't take this app as a serious project - it was made just for educational purposes.
I didn't use much scaffolding so that I could focus on understanding what happens in the app.It's not really meant to be a production-ready project - hence the hard-coded connection string, no containerization etc.
## Running
### Visual Studio
- open this project's solution
- wait until dependencies have been restored
- update the connection string in `AspNetPracticeTodo/appsettings.json` (if needed)
- open the NuGet console and type in `update-database` in order to make DB migrations
- run this app (`Ctrl+F5` in order to run without attaching the debugger)