Giter VIP home page Giter VIP logo

zzpj's Introduction

Share the Bill

Web application supporting managing shared expenses.

Postgres docker instance initialization

docker pull postgres:alpine
docker run --name postgres-0 -e POSTGRES_PASSWORD=admin -d -p 5433:5432 postgres:alpine  
docker exec -it postgres-0 bash

psql -U postgres
CREATE DATABASE sharethebill;
CREATE USER sharethebill_admin WITH PASSWORD 'admin';
GRANT ALL PRIVILEGES ON DATABASE sharethebill TO sharethebill_admin;

Sample requests

register user

POST http://localhost:8080/api/user
{
"login": "jkowalski",
"email": "[email protected]",
"role": "CLIENT"
}

add group

POST http://localhost:8080/api/group/create
{
"name": "testowa",
"isActive": true,
"currencyCode": "EUR"
}

add user to group

POST http://localhost:8080/api/group/addUser/{group_id}/{user_id}

add purchase

POST http://localhost:8080/api/group/addPurchase/{group_id}/{user_id}
{
"title": "pope souvenirs",
"value": 21.37,
"description": "pope John Paul II suvenirs"
}

calculate

GET http://localhost:8080/api/group/calculate/{group_id}

zzpj's People

Contributors

rempek99 avatar badwolf4 avatar pawrob avatar r00bertos1 avatar kaliszando avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.