Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laplacexd/expensetrackerapi
Need some help with tracking your expenses? Maybe this simple API would help. This is a simple CRUD API made for learning C#, ASP.NET Web API, and Entity Framework concepts.
https://github.com/laplacexd/expensetrackerapi
asp-net csharp jwt jwt-authentication rest-api swagger
Last synced: about 1 month ago
JSON representation
Need some help with tracking your expenses? Maybe this simple API would help. This is a simple CRUD API made for learning C#, ASP.NET Web API, and Entity Framework concepts.
- Host: GitHub
- URL: https://github.com/laplacexd/expensetrackerapi
- Owner: LaplaceXD
- License: mit
- Created: 2024-09-13T14:28:29.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-23T17:56:19.000Z (4 months ago)
- Last Synced: 2024-10-25T19:42:42.547Z (3 months ago)
- Topics: asp-net, csharp, jwt, jwt-authentication, rest-api, swagger
- Language: C#
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Expense Tracker API
A simple CRUD API for tracking expenses and income, featuring JWT authentication.
## Getting Started
### Prerequisites
- [.NET SDK](https://dotnet.microsoft.com/download) installed on your machine.
- A package manager like [NuGet](https://www.nuget.org/) for package restoration.### Setup Instructions
1. **Clone the repository**:
```bash
git clone https://github.com/LaplaceXD/ExpenseTrackerAPI.git
```
Navigate into the project directory:
```bash
cd ExpenseTrackerAPI
```2. **Restore dependencies**:
Run the following command to restore necessary packages:
```bash
dotnet restore
```3. **Run the application**:
Start the application with:
```bash
dotnet run
```4. **Access the API**:
Once running, the API will be available at `http://localhost:5186`. The swagger docs should be available at `http://localhost:5186/swagger`.## License
This project is licensed under the [MIT License](https://raw.githubusercontent.com/LaplaceXD/ExpenseTrackerAPI/main/LICENSE).