Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manuelernesto/money-tracker-api
Money Tracker API using Ktor 3.0 Server, Exposed, Swagger and OpenAPI
https://github.com/manuelernesto/money-tracker-api
exposed exposed-orm gcp ktor ktor-server openapi postgresql swagger
Last synced: 6 days ago
JSON representation
Money Tracker API using Ktor 3.0 Server, Exposed, Swagger and OpenAPI
- Host: GitHub
- URL: https://github.com/manuelernesto/money-tracker-api
- Owner: manuelernesto
- Created: 2024-10-11T18:43:59.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-09T21:30:02.000Z (6 days ago)
- Last Synced: 2024-11-09T22:26:04.265Z (6 days ago)
- Topics: exposed, exposed-orm, gcp, ktor, ktor-server, openapi, postgresql, swagger
- Language: Kotlin
- Homepage:
- Size: 367 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Money Tracker API
This is an API developed with modern server side tools:
* [Kotlin](https://github.com/JetBrains/kotlin)
* [Ktor](https://github.com/ktorio/ktor)
* [Exposed](https://github.com/JetBrains/Exposed)### OpenAPI Documentation
![OpenAPI Documentation](./pictures/openapi.png)
Check [here](/src/main/resources/openapi/documentation.yaml) the documentation file.### How to run the project
* Clone the repository
```
git clone https://github.com/manuelernesto/money-tracker-api.git
```* Create a postgres database
```
CREATE DATABASE money_tracker_db;
```* Go to the project folder and run it
```
DB_URL=jdbc:postgresql://{host}:{port}/money_tracker_db DB_PASSWORD=your_db_password DB_USER=your_db_user ./gradlew run
```