Hi Divyush, I have recorded a session where I start up fineract from scratch. You can watch it here:
https://asciinema.org/a/VteqzlXkuBM4qg2eMrfx0ftQ8 Based on this you will be able to replicate this on your machine. Prerequisites: - Ubuntu 22.04 - Docker is installed - Make sure you have a proper java version on your machine. We are running and developing Fineract using Zulu 17 JDK. You can download it from here: https://www.azul.com/downloads/#zulu. The version which I am currently using is: openjdk version "17.0.9" 2023-10-17 LTS The steps: 1) Clone the Fineract git repository git clone https://github.com/apache/fineract.git 2) Spin up the database in docker docker run --name mariadb-10.9 -p 3306:3306 -e MARIADB_ROOT_PASSWORD=mysql -d mariadb:10.9 3) Initialize database cd fineract ./gradlew createDB -PdbName=fineract_tenants ./gradlew createDB -PdbName=fineract_default 4) Start up the fineract backend using gradle ./gradlew bootrun 5) Wait couple of minutes, then using curl, you can check the status of your fineract backend curl -s -k https://localhost:8443/fineract-provider/actuator/health Regards, Peter On Tue, Nov 7, 2023 at 1:25 PM Ádám Sághy <adamsa...@gmail.com> wrote: > Hi > > You havent shared too much information… > > Can you please describe what exactly your question regarding "starting the > fineract jar file”? > > What do you try to achieve? What configurations you were using…etc. > > If you are facing some exception, please share that as well. > > In the meantime, please feel free to check the Readme of the Fineract: > https://github.com/apache/fineract/blob/develop/README.md > You might find the answer for your questions there. > > Regards, > Adam > > On 7 Nov 2023, at 11:12, Divyush Raj <rajdivy...@gmail.com> wrote: > > Hi, > I need some urgent help with starting the fineract jar file. > Could you please help me? > > Thanks and regards > Divyush > > >