Skip to content

swagslash/GameTracker-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

109 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GameTracker-Server

Build Status Quality Gate Status

GameTracker is an application where users can import games and then find out which games they have in common.

Setup

The backend is configured to either use a local Postgres DB or use a Docker container powered Postgres DB

The application needs an application.yaml to run properly. A dummy file can be found in src/main/resources/ application.yaml.dummy.

Local Database

If you are using a local database just start your DB and adapt your connection in the application.yaml file

spring:
  datasource:
    url: jdbc:postgresql://localhost:5432/<<DatabaseName>>
    username: <<DatabaseUser>>
    password: <<DatabasePassword>>

Docker Database

The application.yaml dummy file is preconfigured for use with docker Execute the following command and you are good to go

docker run --name postgres-db -e POSTGRES_PASSWORD=mysecretpassword -p 5432:5432 -d postgres

If wanted the password can be changed, just make sure it matches the password inside applicaiton.yaml

About

Backend of the GameTracker Application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages