RESTful API to manage expenses
- JWT Authentication
- Manage expenses with CRUD operations
- Filter expenses by date/time and categories
| Method | Path | Description |
|---|---|---|
| GET | /expenses | Get all expenses with optional filter |
| GET | /expenses/:id | Get a expense |
| POST | /expenses | Create a new expense |
| PUT | /expenses/:id | Update a expense |
| DELETE | /expenses/:id | Delete a expense |
- Fork this repository
- Clone the forked repository to local
- Make commits and create pull requests to main repository