https://github.com/guryanovyan/user-table
Implementation of data management in a single table. Add locally or store on the server.
https://github.com/guryanovyan/user-table
asp-net-core css dotnet entity-framework-core html javascript sqlite
Last synced: 3 months ago
JSON representation
Implementation of data management in a single table. Add locally or store on the server.
- Host: GitHub
- URL: https://github.com/guryanovyan/user-table
- Owner: guryanovyan
- Created: 2025-02-03T21:33:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-03T21:57:48.000Z (over 1 year ago)
- Last Synced: 2025-06-11T20:51:55.805Z (about 1 year ago)
- Topics: asp-net-core, css, dotnet, entity-framework-core, html, javascript, sqlite
- Language: C#
- Homepage:
- Size: 21.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# User table
## Implementation of data management in a single table.
Users can be added locally (only on the client side) or stored on the server (saved to the database).
### Technologies used:
- **Backend:** .NET 8, ASP.NET Core, Entity Framework Core
- **Frontend:** HTML, CSS, JavaScript (Vanilla JS)
- **Database:** SQLite
## Launch
**Restore dependencies:**
```
dotnet restore
```
**Apply migrations (if needed):**
```
dotnet ef database update
```
**Run the server:**
```
dotnet run
```
**Start frontend (open in browser):**
```
index.html
```