Skip to content

Getting started

  1. Create spring boot application using Spring Initializr
  2. Add following dependency to your build tool

    1
    2
    3
    4
    5
    <dependency>
        <groupId>objectify</groupId>
        <artifactId>notif-center</artifactId>
        <version>1.1.6</version>
    </dependency>
    
    1
    implementation group: 'objectify', name: 'notif-center', version: '1.1.6'
    
  3. Configure database connection which will be used by notiflow for persistance of processing relevant information

    1
    2
    3
    4
    spring.datasource.platform=postgres
    spring.datasource.url=jdbc:postgresql://localhost:5432/db_name
    spring.datasource.username=user_name
    spring.datasource.password=password
    

    Database configuration

    You might need to create a new database if you don't have an existing one. There are other options on how to configure data source.

  4. That's it. Check examples to do something useful with Notiflow