Skip to content

markusweiss/game-api-postgres

Repository files navigation

game-api-postgres

work in progress...

Another try for gameing api with postgres.

Installed local postgres Docker Container.

CREATE TABLE GAMESCORE (
    ID SERIAL PRIMARY KEY,
    GAMER TEXT NOT NULL,
    SCORE INTEGER NOT NULL
);

start dev

npm run dev

push