Skip to content
/ seed Public

Seed – a web application engine thats supports schema and code modifications at runtime

License

Notifications You must be signed in to change notification settings

euu-rocks/seed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Seed

License: AGPL v3 Build and Deploy Quality Gate Status Javadoc

How to run

Create PostgreSQL database and user

create database seed

create user seed with password 'seed'

Try with DOCKER

docker build -t euurocks/seed .

docker run --env "SPRING_DATASOURCE_URL=jdbc:postgresql://192.168.69.135:5432/seed" euurocks/seed

Note:

192.168.69.135 is your current IP of your running database service

Try with Springboot

mvn spring-boot:run -Dspring-boot.run.arguments=--spring.datasource.url=jdbc:postgresql://127.0.0.1:5432/seed

Note:

127.0.0.1 is your current IP of your running database service

Try with Docker Compose

docker-compose up

Keep license headers up to date before commit

mvn license:check

mvn license:format