Go to file
2024-12-26 23:23:21 +01:00
.github/workflows Update test.yml 2024-12-26 16:54:51 +01:00
config implemented the postgres pgx driver and tested the database connection 2024-12-22 20:58:57 +01:00
database test cases for database, some account testing 2024-12-26 16:08:43 +01:00
examples docker compose example 2024-12-26 16:33:27 +01:00
internal INIT Project structure 2024-12-14 02:12:47 +01:00
server test cases for database, some account testing 2024-12-26 16:08:43 +01:00
.dockerignore Added Dockerfile and implement http status codes 2024-12-20 15:47:43 +01:00
.gitignore UPDATED GITIGNORE 2024-12-14 02:11:11 +01:00
Dockerfile Added Dockerfile and implement http status codes 2024-12-20 15:47:43 +01:00
go.mod test cases for database, some account testing 2024-12-26 16:08:43 +01:00
go.sum test cases for database, some account testing 2024-12-26 16:08:43 +01:00
LICENSE Added LICENSE 2024-12-26 23:23:21 +01:00
main.go Route Structure and a main function 2024-12-20 01:52:27 +01:00
README.md UPDATED README.me 2024-12-26 00:09:36 +01:00

Bookholder-API

Setup

For this project a PostgreSQL database is required.

Enviroment Vars

DB_USER = user
DB_PASSWORRD = password
DB_HOST = my.host
DB_PORT = 5432
DB_NAME = databasename # Optinal; bookholder is the default
SECRET = your32charactersecret
PORT = 8080 # Optional; 8080 is the default port

Example

Examples are found in the examples folder.