Skip to content

Latest commit

 

History

History
38 lines (23 loc) · 808 Bytes

GETTING_STARTED.md

File metadata and controls

38 lines (23 loc) · 808 Bytes

Getting started

Development

Dependencies

Ledgers is heavily dependent on spring for now.

Building and Running

	> git clone https://github.com/adorsys/ledgers.git
	> cd ledgers
	> mvn clean install
	> cd ledgers-app
	> mvn spring-boot:run -Dspring.profiles.active=h2

This will start the ledgers app with the embedded h2 database.

Visiting the API

http://localhost:8088/swagger-ui.html#/

Visiting the Database

when started with the h2 profile, you can use the web browser to visit database tables on the url http://localhost:8088/h2-console/ . make sure you use the following connection properties:

Driver Class : org.h2.Driver JDBC URL: jdbc:h2:mem:ledgers User Name: sa Password: sa

Press Connect button and you can explore the data model.

More on this to come...