Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/conscious-puppet/book-store-spanner-db
spanner db testing
https://github.com/conscious-puppet/book-store-spanner-db
Last synced: 14 days ago
JSON representation
spanner db testing
- Host: GitHub
- URL: https://github.com/conscious-puppet/book-store-spanner-db
- Owner: conscious-puppet
- License: mit
- Created: 2023-09-18T12:26:54.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-17T06:25:41.000Z (over 1 year ago)
- Last Synced: 2023-10-17T12:42:41.440Z (over 1 year ago)
- Language: Haskell
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# book-store
# How to Test
- Run [pgAdapter](https://github.com/GoogleCloudPlatform/pgadapter)
- Add the following envs
```bash
export dbHost="localhost" # host of pgAdapter
export dbPort="5433" # port on which pgAdapter is running
export dbName="psql-interface" # spanner db name
export dbUser=""
export dbPassword=""
```
- Run the application, which we can test the DML queries.## Routes
```
@route GET /version
@desc App version@route GET /healthcheck
@desc Healthcheck API@route GET /books
@desc Get all books
@resp
[
{
"id": "52302b94-5241-4cac-ad1a-6d42c73a93ee",
"name": "The Heart Is a Lonely Hunter",
"author": "Carson McCullers"
},
{
"id": "01136e18-a56e-420a-8e2c-db3319745255",
"name": "The Lord of the Rings",
"author": "J. R. R. Tolkien"
}
]@route GET /books/:id
@desc Get a book by id
@resp
{
"id": "01136e18-a56e-420a-8e2c-db3319745255",
"name": "The Lord of the Rings",
"author": "J. R. R. Tolkien"
}@route POST /books
@desc Create a new book
@req
{
"name": "Heart Is a Lonely Hunter",
"author": "Carson McCullers"
}
@resp
{
"id": "52302b94-5241-4cac-ad1a-6d42c73a93ee",
"name": "Heart Is a Lonely Hunter",
"author": "Carson McCullers"
}@route POST /books
@desc Update a book by id
@req
{
"id": "52302b94-5241-4cac-ad1a-6d42c73a93ee",
"name": "The Heart Is a Lonely Hunter",
"author": "Carson McCullers"
}
@resp
{
"id": "52302b94-5241-4cac-ad1a-6d42c73a93ee",
"name": "The Heart Is a Lonely Hunter",
"author": "Carson McCullers"
}@route DELETE /books/:id
@desc Delete a book by id
@resp NoContent
```# Docker Image
```
nix build .#dockerImage
```