Re: FAQ on Wiki, structure of wiki

2019-03-11 Thread Isaac Kamga
Hello James,

You've done a very great job organizing those pages on Confluence.

The entire Wiki looks new and feels refreshing. More grease to your elbows.

Cheers,
Isaac Kamga.

On Tue, Mar 12, 2019 at 2:25 AM James Dailey  wrote:

> Hi All -
>
> I've made a bunch of changes to the navigation and structure of the wiki.
>
> I'd like to know if I should deprecate additional pages.  For example, are
> we still relying on the specifications under
>
> https://cwiki.apache.org/confluence/display/FINERACT/Apache+Fineract+1.0+Functional+Specifications
>
>
> By Deprecating them, we would indicate that they no longer are
> authoritative.   So, I think the question - are these pages still accurate?
>
> James Dailey
> skype: jdailey
>
>
> On Mon, Mar 4, 2019 at 10:25 AM James Dailey 
> wrote:
>
> > Thanks Myrle - totally agree we don't want to have copy and paste going
> > on.  Jira tickets are canon.
> >
> > I immediately found that a macro insert works -->
> > https://cwiki.apache.org/confluence/display/FINERACT/Test+page
> > but only for infra tickets.  I'll work on figuring this out.
> >
> > Thanks for the suggestion.
> >
> > @jdailey67
> >
> >
> > On Mon, Mar 4, 2019 at 12:39 AM Myrle Krantz  wrote:
> >
> >> If you're going to be carrying over information from Jira, you should
> look
> >> into whether its possible to use the jira integration in confluence so
> >> that
> >> it can be done automatically.  Then create shared filters on release
> >> numbers and you have "one source of truth" rather than spreading
> >> information between two systems and leaving everyone to wonder which is
> >> canonical.
> >>
> >> I don't know though if this will work without Infra involvement.  You
> may
> >> need to ask.
> >>
> >> Best Regards,
> >> Myrle
> >>
> >> On Mon, Mar 4, 2019 at 4:36 AM James Dailey 
> >> wrote:
> >>
> >> > Hi Isaac -- Thanks for the input. I'd also like to have community
> >> members
> >> > be able to more easily understand the needs and the priorities.  Some
> of
> >> > that, I hope, can be incorporated into the FAQ.
> >> >
> >> > At the risk of expanding this topic just a tad, there should be a norm
> >> for
> >> > a newbie to:
> >> > * Consult the main page, consult the FAQ, high level pages on wiki
> >> > * Join the listserv
> >> > * Browse some tickets
> >> > * Set up dev environment (if coding) or demo environment (if
> >> documentation
> >> > or UI)
> >> > * Dig further into wiki
> >> > * Ask questions about specific tasks or code on the list
> >> >
> >> > I take Myrle's suggestion as to not have a roadmap that makes the
> >> project
> >> > look bad when we don't meet specific dates and capabilities. We want
> an
> >> > accurate reflection of the level of work going on and the actual
> >> > priorities. The PMC report has had good information about what is
> >> actually
> >> > going on.
> >> >
> >> > Looking at just roadmaps, we want to focus, I think, on three levels:
> >> >
> >> > *Level A)* high level product roadmap - laying out broad areas of
> >> > improvement or enhancement to communicate "what would be useful?" ;
> >> > in my mind, the high level community roadmap should be something
> >> that
> >> > is able to be referenced and not changed much over an 18 month period
> >> >this should not have dates, more about priorities
> >> >
> >> > *Level B)* roadmap of specific enhancements that stand in for the lack
> >> of
> >> > "Epics"  in apache jira set up. This may be too labor intensive so
> only
> >> > should be done for specific higher profile things.  ("Epics" are high
> >> > level, can be related to a product need, and reference multiple jira
> >> > tickets)
> >> >
> >> > *Level C)* a bit more controversial perhaps, but one thing I know
> about
> >> > open source projects is that they (we) should also have the
> >> "anti-roadmap",
> >> > the areas that fineract does NOT intend to do.  Why?  This gives space
> >> for
> >> > the commercial users of the code to come up with add-ons and wrappers
> >> that
> >> > then create the virtuous cycle of contribution. That anti-roadmap
> >> should be
> >> > fairly broadly stated.  e.g. we won't develop deployment tools or
> >> training
> >> > materials we leave that to other players in market
> >> >
> >> > So, I think for now, I'd like to mark "To-be-deprecated" on pages that
> >> are
> >> > not active, haven't been updated in over 12 months. If they are
> actually
> >> > active and relevant, then the person involved in maintaining that page
> >> can
> >> > easily remove that term, and if not, then after a reasonable period of
> >> time
> >> > - say 30 days - we put those pages into full Deprecated status.
> >> >
> >> > Given the discussion thus far and using our lazy consensus approach,
> I'm
> >> > going to move forward on the restructuring first.
> >> >
> >> > Thanks,
> >> > jdailey
> >> >
> >> >
> >> > On Sun, Mar 3, 2019 at 6:49 PM Isaac Kamga 
> >> wrote:
> >> >
> >> > > Hello James,
> >> > >
> >> > > Thanks for the immense 

Re: Error when running *gradlew runTomCat*

2019-03-11 Thread Vishwas Babu
Mua,

During tomcatRunwar, the following tasks are carried out

1) Initialize and upgrade the tenants list database (which lists details of
all tenants and their database connection credentials, i.e the equivalent
of ./gradlew migrateTenantListDB -PdbName=mifosplatform-tenants )
 You are stuck here
2) Upgrade each tenant-specific database.


The gradle tasks for migrating databases pick up the db credentials from
build.gradle (root, mysql by default). However, the tomcatrunwar task picks
up the credentials from a different location
(/fineract-provider/src/test/resources/META-INF/context.xml). You would
have to ensure the appropriate credentials are set here too, or that you
are using the default credentials (root,mysql).

Regards,
Vishwas

On Mon, Mar 11, 2019 at 7:19 PM Mua Rachmann  wrote:

> Hi everyone,
>
> I ran the following commands below which built successfully.
>
>
>1. ./gradlew migrateTenantListDB -PdbName=mifosplatform-tenants
>2. ./gradlew migrateTenantDB -PdbName=mifostenant-default
>
>
> Upon running *gradlew tomcatRunWar* I get the following error
> https://pastebin.com/ExQZEG6c
>
> From the following error message. I think the connection to mysql-server is
> not obtained but i am confused cause i just ran the migrations and it
> actually populated my database which shows the fineract app actually
> communicates with my database.
>
> Please can anyone help me figure this out?
>
> Thanks Mua.
>


Re: Error when running *gradlew runTomCat*

2019-03-11 Thread Mua Rachmann
Sorry about the subject of the mail it is actually tomcatRunWar. Sorry for
the confusion. I am new to the names

Still would love to know why my build fails.

Cheers

On Tue, Mar 12, 2019 at 3:19 AM Mua Rachmann  wrote:

> Hi everyone,
>
> I ran the following commands below which built successfully.
>
>
>1. ./gradlew migrateTenantListDB -PdbName=mifosplatform-tenants
>2. ./gradlew migrateTenantDB -PdbName=mifostenant-default
>
>
> Upon running *gradlew tomcatRunWar* I get the following error
> https://pastebin.com/ExQZEG6c
>
> From the following error message. I think the connection to mysql-server
> is not obtained but i am confused cause i just ran the migrations and it
> actually populated my database which shows the fineract app actually
> communicates with my database.
>
> Please can anyone help me figure this out?
>
> Thanks Mua.
>


Error when running *gradlew runTomCat*

2019-03-11 Thread Mua Rachmann
Hi everyone,

I ran the following commands below which built successfully.


   1. ./gradlew migrateTenantListDB -PdbName=mifosplatform-tenants
   2. ./gradlew migrateTenantDB -PdbName=mifostenant-default


Upon running *gradlew tomcatRunWar* I get the following error
https://pastebin.com/ExQZEG6c

>From the following error message. I think the connection to mysql-server is
not obtained but i am confused cause i just ran the migrations and it
actually populated my database which shows the fineract app actually
communicates with my database.

Please can anyone help me figure this out?

Thanks Mua.


Re: FAQ on Wiki, structure of wiki

2019-03-11 Thread James Dailey
Hi All -

I've made a bunch of changes to the navigation and structure of the wiki.

I'd like to know if I should deprecate additional pages.  For example, are
we still relying on the specifications under
https://cwiki.apache.org/confluence/display/FINERACT/Apache+Fineract+1.0+Functional+Specifications


By Deprecating them, we would indicate that they no longer are
authoritative.   So, I think the question - are these pages still accurate?

James Dailey
skype: jdailey


On Mon, Mar 4, 2019 at 10:25 AM James Dailey  wrote:

> Thanks Myrle - totally agree we don't want to have copy and paste going
> on.  Jira tickets are canon.
>
> I immediately found that a macro insert works -->
> https://cwiki.apache.org/confluence/display/FINERACT/Test+page
> but only for infra tickets.  I'll work on figuring this out.
>
> Thanks for the suggestion.
>
> @jdailey67
>
>
> On Mon, Mar 4, 2019 at 12:39 AM Myrle Krantz  wrote:
>
>> If you're going to be carrying over information from Jira, you should look
>> into whether its possible to use the jira integration in confluence so
>> that
>> it can be done automatically.  Then create shared filters on release
>> numbers and you have "one source of truth" rather than spreading
>> information between two systems and leaving everyone to wonder which is
>> canonical.
>>
>> I don't know though if this will work without Infra involvement.  You may
>> need to ask.
>>
>> Best Regards,
>> Myrle
>>
>> On Mon, Mar 4, 2019 at 4:36 AM James Dailey 
>> wrote:
>>
>> > Hi Isaac -- Thanks for the input. I'd also like to have community
>> members
>> > be able to more easily understand the needs and the priorities.  Some of
>> > that, I hope, can be incorporated into the FAQ.
>> >
>> > At the risk of expanding this topic just a tad, there should be a norm
>> for
>> > a newbie to:
>> > * Consult the main page, consult the FAQ, high level pages on wiki
>> > * Join the listserv
>> > * Browse some tickets
>> > * Set up dev environment (if coding) or demo environment (if
>> documentation
>> > or UI)
>> > * Dig further into wiki
>> > * Ask questions about specific tasks or code on the list
>> >
>> > I take Myrle's suggestion as to not have a roadmap that makes the
>> project
>> > look bad when we don't meet specific dates and capabilities. We want an
>> > accurate reflection of the level of work going on and the actual
>> > priorities. The PMC report has had good information about what is
>> actually
>> > going on.
>> >
>> > Looking at just roadmaps, we want to focus, I think, on three levels:
>> >
>> > *Level A)* high level product roadmap - laying out broad areas of
>> > improvement or enhancement to communicate "what would be useful?" ;
>> > in my mind, the high level community roadmap should be something
>> that
>> > is able to be referenced and not changed much over an 18 month period
>> >this should not have dates, more about priorities
>> >
>> > *Level B)* roadmap of specific enhancements that stand in for the lack
>> of
>> > "Epics"  in apache jira set up. This may be too labor intensive so only
>> > should be done for specific higher profile things.  ("Epics" are high
>> > level, can be related to a product need, and reference multiple jira
>> > tickets)
>> >
>> > *Level C)* a bit more controversial perhaps, but one thing I know about
>> > open source projects is that they (we) should also have the
>> "anti-roadmap",
>> > the areas that fineract does NOT intend to do.  Why?  This gives space
>> for
>> > the commercial users of the code to come up with add-ons and wrappers
>> that
>> > then create the virtuous cycle of contribution. That anti-roadmap
>> should be
>> > fairly broadly stated.  e.g. we won't develop deployment tools or
>> training
>> > materials we leave that to other players in market
>> >
>> > So, I think for now, I'd like to mark "To-be-deprecated" on pages that
>> are
>> > not active, haven't been updated in over 12 months. If they are actually
>> > active and relevant, then the person involved in maintaining that page
>> can
>> > easily remove that term, and if not, then after a reasonable period of
>> time
>> > - say 30 days - we put those pages into full Deprecated status.
>> >
>> > Given the discussion thus far and using our lazy consensus approach, I'm
>> > going to move forward on the restructuring first.
>> >
>> > Thanks,
>> > jdailey
>> >
>> >
>> > On Sun, Mar 3, 2019 at 6:49 PM Isaac Kamga 
>> wrote:
>> >
>> > > Hello James,
>> > >
>> > > Thanks for the immense efforts you're putting into making the wiki
>> more
>> > > visible and supple.
>> > >
>> > > Besides being open source best practice, I think the community roadmap
>> > > should be left there given it provides clarity to volunteers, puts
>> open
>> > > issues in context and doesn't coerce anyone with tight deadlines.
>> > >
>> > > Cheers,
>> > > Isaac Kamga.
>> > >
>> > > On Thu, Feb 28, 2019 at 2:56 PM Myrle Krantz 
>> wrote:
>> > >
>> > > > Hey James,
>> > > >
>> > > > The FAQ looks good.  Really 

Re: Finding beginner's issues in JIRA

2019-03-11 Thread Ed Cable
Right now we had been using the label, Volunteer/volunteer. Let's make sure
if we do go with beginner/starte we tag those issues that have the
volunteer label on them:

The public filter for the volunteer issues is located at

https://issues.apache.org/jira/browse/FINERACT-726?filter=12341553

Let's make the filter with whatever label we choose more prominent from the
website and wiki.

Ed

On Mon, Mar 11, 2019 at 3:02 AM Courage Angeh 
wrote:

> Hi Myrle,
>
> I sounds good to me.
>
> On Mon, Mar 11, 2019, 5:55 AM Myrle Krantz  wrote:
>
> > So what do you all think of:  "starter" as a label.
> >
> > And further, what do you all think of making this label be focused at
> > people who are new to our project, but not necessarily new to
> programming?
> >
> > Best Regards,
> > Myrle
> >
> >
> > On Sun, Mar 10, 2019 at 3:15 PM Awasum Yannick 
> wrote:
> >
> > > Myrle, I dont think we have such tags for beginner issues both Fineract
> > 1.x
> > > and Fineract CN.
> > >
> > > On Sun, Mar 10, 2019 at 2:13 PM yildirim.oguzha...@gmail.com <
> > > yildirim.oguzha...@gmail.com> wrote:
> > >
> > > > I check jira for 2 months now but i don't see anything like that.
> > Spring
> > > > project has first-timers-only tag, something like that cloud work.
> > > >
> > > > On 2019/03/10 11:29:23, Myrle Krantz  wrote:
> > > > > Hey all,
> > > > >
> > > > > Do we have a label for beginner's issues?  I could not find one.  I
> > > > > searched Confluence, and I looked through a few issues in JIRA too.
> > > > (But I
> > > > > had to stop looking because right now there's maintenance for
> JIRA.)
> > > > >
> > > > > If we want our project to be welcoming to newcomers, we need to
> make
> > it
> > > > > easier to find beginner's issues.
> > > > >
> > > > > If we already have such a label, let me know, and I'll add a search
> > for
> > > > it
> > > > > to one of our getting started pages in confluence.  If not, I'll
> > invent
> > > > one.
> > > > >
> > > > > Best Regards,
> > > > > Myrle
> > > > >
> > > >
> > >
> >
>


-- 
*Ed Cable*
President/CEO, Mifos Initiative
edca...@mifos.org | Skype: edcable | Mobile: +1.484.477.8649

*Collectively Creating a World of 3 Billion Maries | *http://mifos.org
  


Re: Outreachy Projects

2019-03-11 Thread Ed Cable
Hello Srujana,

Welcome! I'm cc'ing the Mifos Developer List and the Fineract Developer
list so others in the community can help as well.

To get started you should browse our getting started guide (
https://cwiki.apache.org/confluence/display/FINERACT/Getting+Started+Docs)
to learn how to set up your environment. You can also try to grab a bug
from this list:

https://issues.apache.org/jira/issues/?filter=12341553



On Mon, Mar 11, 2019 at 5:34 AM Srujana Peddinti 
wrote:

> Hi,
> I'm  a fourth year CSE student from IIIT-H. I'm very much interested in
> working with your organization and on project "*Strengthen/Harden
> Fineract 1.x to LTS Version by Upgrading Spring & Improving Code Coverage
> of Tests*" This is my first time contributing to opensource and I'm
> finding it difficult to how to start. Can you please assign  me some bugs
> that I can get started on?
>
> Regards
> Srujana
>


-- 
*Ed Cable*
President/CEO, Mifos Initiative
edca...@mifos.org | Skype: edcable | Mobile: +1.484.477.8649

*Collectively Creating a World of 3 Billion Maries | *http://mifos.org
  


Re: Importing Fineract 1.x in IntelliJ

2019-03-11 Thread Mua Rachmann
Thanks

On Mon, Mar 11, 2019 at 2:38 PM Awasum Yannick  wrote:

> Ok, I have granted write permissions to : Mua Ndzo Laurent (muarachmann)
>
> Mua, you can now create documentations on Confluence.
>
>
> On Mon, Mar 11, 2019 at 2:33 PM Mua Rachmann 
> wrote:
>
> > My username is muarachmann thanks
> >
> > On Mon, Mar 11, 2019 at 2:31 PM Awasum Yannick 
> wrote:
> >
> > > Mua, What is your Confluence username? Let me give you permission.
> > >
> > > On Mon, Mar 11, 2019 at 2:25 PM Mua Rachmann 
> > > wrote:
> > >
> > > > Awasum , please how do i create a wiki page on confluence. I can't
> see
> > to
> > > > find how to do that.
> > > >
> > > > Does it require some sort of permissions?
> > > >
> > > > Thanks.
> > > >
> > > > On Mon, Mar 11, 2019 at 2:18 PM Awasum Yannick 
> > > wrote:
> > > >
> > > > > Mua, Create a wiki page and document your findings then share on
> this
> > > > > thread.
> > > > >
> > > > >
> > > > > Thanks.
> > > > >
> > > > > On Mon, Mar 11, 2019 at 2:15 PM Mua Rachmann <
> muarachm...@gmail.com>
> > > > > wrote:
> > > > >
> > > > > > Hello everyone,
> > > > > >
> > > > > > On my journey of getting started with Apache Fineract 1.x i had
> > some
> > > > > > issues. I am new to all these but i found it challenging i could
> > get
> > > > > myself
> > > > > > a walk-around all by myself and with some little reserach.
> > > > > >
> > > > > > For general reasons i have been using IntelliJ for my java
> projects
> > > and
> > > > > it
> > > > > > was but normal for such a project i use IntelliJ for development
> > > since
> > > > i
> > > > > > have a student licence for that.
> > > > > >
> > > > > > I found out importing Fineract was a problem for me(don't know if
> > > this
> > > > is
> > > > > > general) as it modified the gradle's wrapper  using the latest
> > > gradle i
> > > > > had
> > > > > > '5.2.1'.  on my quest to solve this problem I wish intelliJ
> detects
> > > my
> > > > > > gradle that comes when cloning the repo.
> > > > > >
> > > > > > I did a dirty solution not sure if this is the best way to do
> this
> > > but
> > > > it
> > > > > > worked for me. I copied the gradle directory from the
> > > firact-providers
> > > > > dir
> > > > > > to the finract project and this worked.
> > > > > >
> > > > > > I think this can help others trying to import the project and
> > running
> > > > > from
> > > > > > the inbuilt terminal.
> > > > > >
> > > > > > Disadvantages - increase in size of the project since there are
> two
> > > > > gradle
> > > > > > files.
> > > > > >
> > > > > > Let me all know your thought and how i could possibly document
> > this.
> > > > > Since
> > > > > > i see an import for Fineract CN on confluence here -
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> https://cwiki.apache.org/confluence/display/FINERACT/Importing+Fineract+CN+Microservices+Into+IntelliJ
> > > > > > but not on Fineract 1.x
> > > > > >
> > > > > > Look forward to hearing from you all thanks.
> > > > > >
> > > > > > Regards Mua
> > > > > >
> > > > >
> > > >
> > >
> >
>


Re: Importing Fineract 1.x in IntelliJ

2019-03-11 Thread Awasum Yannick
Ok, I have granted write permissions to : Mua Ndzo Laurent (muarachmann)

Mua, you can now create documentations on Confluence.


On Mon, Mar 11, 2019 at 2:33 PM Mua Rachmann  wrote:

> My username is muarachmann thanks
>
> On Mon, Mar 11, 2019 at 2:31 PM Awasum Yannick  wrote:
>
> > Mua, What is your Confluence username? Let me give you permission.
> >
> > On Mon, Mar 11, 2019 at 2:25 PM Mua Rachmann 
> > wrote:
> >
> > > Awasum , please how do i create a wiki page on confluence. I can't see
> to
> > > find how to do that.
> > >
> > > Does it require some sort of permissions?
> > >
> > > Thanks.
> > >
> > > On Mon, Mar 11, 2019 at 2:18 PM Awasum Yannick 
> > wrote:
> > >
> > > > Mua, Create a wiki page and document your findings then share on this
> > > > thread.
> > > >
> > > >
> > > > Thanks.
> > > >
> > > > On Mon, Mar 11, 2019 at 2:15 PM Mua Rachmann 
> > > > wrote:
> > > >
> > > > > Hello everyone,
> > > > >
> > > > > On my journey of getting started with Apache Fineract 1.x i had
> some
> > > > > issues. I am new to all these but i found it challenging i could
> get
> > > > myself
> > > > > a walk-around all by myself and with some little reserach.
> > > > >
> > > > > For general reasons i have been using IntelliJ for my java projects
> > and
> > > > it
> > > > > was but normal for such a project i use IntelliJ for development
> > since
> > > i
> > > > > have a student licence for that.
> > > > >
> > > > > I found out importing Fineract was a problem for me(don't know if
> > this
> > > is
> > > > > general) as it modified the gradle's wrapper  using the latest
> > gradle i
> > > > had
> > > > > '5.2.1'.  on my quest to solve this problem I wish intelliJ detects
> > my
> > > > > gradle that comes when cloning the repo.
> > > > >
> > > > > I did a dirty solution not sure if this is the best way to do this
> > but
> > > it
> > > > > worked for me. I copied the gradle directory from the
> > firact-providers
> > > > dir
> > > > > to the finract project and this worked.
> > > > >
> > > > > I think this can help others trying to import the project and
> running
> > > > from
> > > > > the inbuilt terminal.
> > > > >
> > > > > Disadvantages - increase in size of the project since there are two
> > > > gradle
> > > > > files.
> > > > >
> > > > > Let me all know your thought and how i could possibly document
> this.
> > > > Since
> > > > > i see an import for Fineract CN on confluence here -
> > > > >
> > > > >
> > > >
> > >
> >
> https://cwiki.apache.org/confluence/display/FINERACT/Importing+Fineract+CN+Microservices+Into+IntelliJ
> > > > > but not on Fineract 1.x
> > > > >
> > > > > Look forward to hearing from you all thanks.
> > > > >
> > > > > Regards Mua
> > > > >
> > > >
> > >
> >
>


Re: Importing Fineract 1.x in IntelliJ

2019-03-11 Thread Mua Rachmann
Hello Kang Brender,

 please fill this form to get a student licence -
https://www.jetbrains.com/shop/eform/students

 It should take 2-3 business days to get it reviewed.

Regards.

On Mon, Mar 11, 2019 at 2:33 PM Mua Rachmann  wrote:

> My username is muarachmann thanks
>
> On Mon, Mar 11, 2019 at 2:31 PM Awasum Yannick  wrote:
>
>> Mua, What is your Confluence username? Let me give you permission.
>>
>> On Mon, Mar 11, 2019 at 2:25 PM Mua Rachmann 
>> wrote:
>>
>> > Awasum , please how do i create a wiki page on confluence. I can't see
>> to
>> > find how to do that.
>> >
>> > Does it require some sort of permissions?
>> >
>> > Thanks.
>> >
>> > On Mon, Mar 11, 2019 at 2:18 PM Awasum Yannick 
>> wrote:
>> >
>> > > Mua, Create a wiki page and document your findings then share on this
>> > > thread.
>> > >
>> > >
>> > > Thanks.
>> > >
>> > > On Mon, Mar 11, 2019 at 2:15 PM Mua Rachmann 
>> > > wrote:
>> > >
>> > > > Hello everyone,
>> > > >
>> > > > On my journey of getting started with Apache Fineract 1.x i had some
>> > > > issues. I am new to all these but i found it challenging i could get
>> > > myself
>> > > > a walk-around all by myself and with some little reserach.
>> > > >
>> > > > For general reasons i have been using IntelliJ for my java projects
>> and
>> > > it
>> > > > was but normal for such a project i use IntelliJ for development
>> since
>> > i
>> > > > have a student licence for that.
>> > > >
>> > > > I found out importing Fineract was a problem for me(don't know if
>> this
>> > is
>> > > > general) as it modified the gradle's wrapper  using the latest
>> gradle i
>> > > had
>> > > > '5.2.1'.  on my quest to solve this problem I wish intelliJ detects
>> my
>> > > > gradle that comes when cloning the repo.
>> > > >
>> > > > I did a dirty solution not sure if this is the best way to do this
>> but
>> > it
>> > > > worked for me. I copied the gradle directory from the
>> firact-providers
>> > > dir
>> > > > to the finract project and this worked.
>> > > >
>> > > > I think this can help others trying to import the project and
>> running
>> > > from
>> > > > the inbuilt terminal.
>> > > >
>> > > > Disadvantages - increase in size of the project since there are two
>> > > gradle
>> > > > files.
>> > > >
>> > > > Let me all know your thought and how i could possibly document this.
>> > > Since
>> > > > i see an import for Fineract CN on confluence here -
>> > > >
>> > > >
>> > >
>> >
>> https://cwiki.apache.org/confluence/display/FINERACT/Importing+Fineract+CN+Microservices+Into+IntelliJ
>> > > > but not on Fineract 1.x
>> > > >
>> > > > Look forward to hearing from you all thanks.
>> > > >
>> > > > Regards Mua
>> > > >
>> > >
>> >
>>
>


Re: Importing Fineract 1.x in IntelliJ

2019-03-11 Thread Mua Rachmann
My username is muarachmann thanks

On Mon, Mar 11, 2019 at 2:31 PM Awasum Yannick  wrote:

> Mua, What is your Confluence username? Let me give you permission.
>
> On Mon, Mar 11, 2019 at 2:25 PM Mua Rachmann 
> wrote:
>
> > Awasum , please how do i create a wiki page on confluence. I can't see to
> > find how to do that.
> >
> > Does it require some sort of permissions?
> >
> > Thanks.
> >
> > On Mon, Mar 11, 2019 at 2:18 PM Awasum Yannick 
> wrote:
> >
> > > Mua, Create a wiki page and document your findings then share on this
> > > thread.
> > >
> > >
> > > Thanks.
> > >
> > > On Mon, Mar 11, 2019 at 2:15 PM Mua Rachmann 
> > > wrote:
> > >
> > > > Hello everyone,
> > > >
> > > > On my journey of getting started with Apache Fineract 1.x i had some
> > > > issues. I am new to all these but i found it challenging i could get
> > > myself
> > > > a walk-around all by myself and with some little reserach.
> > > >
> > > > For general reasons i have been using IntelliJ for my java projects
> and
> > > it
> > > > was but normal for such a project i use IntelliJ for development
> since
> > i
> > > > have a student licence for that.
> > > >
> > > > I found out importing Fineract was a problem for me(don't know if
> this
> > is
> > > > general) as it modified the gradle's wrapper  using the latest
> gradle i
> > > had
> > > > '5.2.1'.  on my quest to solve this problem I wish intelliJ detects
> my
> > > > gradle that comes when cloning the repo.
> > > >
> > > > I did a dirty solution not sure if this is the best way to do this
> but
> > it
> > > > worked for me. I copied the gradle directory from the
> firact-providers
> > > dir
> > > > to the finract project and this worked.
> > > >
> > > > I think this can help others trying to import the project and running
> > > from
> > > > the inbuilt terminal.
> > > >
> > > > Disadvantages - increase in size of the project since there are two
> > > gradle
> > > > files.
> > > >
> > > > Let me all know your thought and how i could possibly document this.
> > > Since
> > > > i see an import for Fineract CN on confluence here -
> > > >
> > > >
> > >
> >
> https://cwiki.apache.org/confluence/display/FINERACT/Importing+Fineract+CN+Microservices+Into+IntelliJ
> > > > but not on Fineract 1.x
> > > >
> > > > Look forward to hearing from you all thanks.
> > > >
> > > > Regards Mua
> > > >
> > >
> >
>


Re: Importing Fineract 1.x in IntelliJ

2019-03-11 Thread Awasum Yannick
Mua, What is your Confluence username? Let me give you permission.

On Mon, Mar 11, 2019 at 2:25 PM Mua Rachmann  wrote:

> Awasum , please how do i create a wiki page on confluence. I can't see to
> find how to do that.
>
> Does it require some sort of permissions?
>
> Thanks.
>
> On Mon, Mar 11, 2019 at 2:18 PM Awasum Yannick  wrote:
>
> > Mua, Create a wiki page and document your findings then share on this
> > thread.
> >
> >
> > Thanks.
> >
> > On Mon, Mar 11, 2019 at 2:15 PM Mua Rachmann 
> > wrote:
> >
> > > Hello everyone,
> > >
> > > On my journey of getting started with Apache Fineract 1.x i had some
> > > issues. I am new to all these but i found it challenging i could get
> > myself
> > > a walk-around all by myself and with some little reserach.
> > >
> > > For general reasons i have been using IntelliJ for my java projects and
> > it
> > > was but normal for such a project i use IntelliJ for development since
> i
> > > have a student licence for that.
> > >
> > > I found out importing Fineract was a problem for me(don't know if this
> is
> > > general) as it modified the gradle's wrapper  using the latest gradle i
> > had
> > > '5.2.1'.  on my quest to solve this problem I wish intelliJ detects my
> > > gradle that comes when cloning the repo.
> > >
> > > I did a dirty solution not sure if this is the best way to do this but
> it
> > > worked for me. I copied the gradle directory from the firact-providers
> > dir
> > > to the finract project and this worked.
> > >
> > > I think this can help others trying to import the project and running
> > from
> > > the inbuilt terminal.
> > >
> > > Disadvantages - increase in size of the project since there are two
> > gradle
> > > files.
> > >
> > > Let me all know your thought and how i could possibly document this.
> > Since
> > > i see an import for Fineract CN on confluence here -
> > >
> > >
> >
> https://cwiki.apache.org/confluence/display/FINERACT/Importing+Fineract+CN+Microservices+Into+IntelliJ
> > > but not on Fineract 1.x
> > >
> > > Look forward to hearing from you all thanks.
> > >
> > > Regards Mua
> > >
> >
>


Re: Importing Fineract 1.x in IntelliJ

2019-03-11 Thread Mua Rachmann
Awasum , please how do i create a wiki page on confluence. I can't see to
find how to do that.

Does it require some sort of permissions?

Thanks.

On Mon, Mar 11, 2019 at 2:18 PM Awasum Yannick  wrote:

> Mua, Create a wiki page and document your findings then share on this
> thread.
>
>
> Thanks.
>
> On Mon, Mar 11, 2019 at 2:15 PM Mua Rachmann 
> wrote:
>
> > Hello everyone,
> >
> > On my journey of getting started with Apache Fineract 1.x i had some
> > issues. I am new to all these but i found it challenging i could get
> myself
> > a walk-around all by myself and with some little reserach.
> >
> > For general reasons i have been using IntelliJ for my java projects and
> it
> > was but normal for such a project i use IntelliJ for development since i
> > have a student licence for that.
> >
> > I found out importing Fineract was a problem for me(don't know if this is
> > general) as it modified the gradle's wrapper  using the latest gradle i
> had
> > '5.2.1'.  on my quest to solve this problem I wish intelliJ detects my
> > gradle that comes when cloning the repo.
> >
> > I did a dirty solution not sure if this is the best way to do this but it
> > worked for me. I copied the gradle directory from the firact-providers
> dir
> > to the finract project and this worked.
> >
> > I think this can help others trying to import the project and running
> from
> > the inbuilt terminal.
> >
> > Disadvantages - increase in size of the project since there are two
> gradle
> > files.
> >
> > Let me all know your thought and how i could possibly document this.
> Since
> > i see an import for Fineract CN on confluence here -
> >
> >
> https://cwiki.apache.org/confluence/display/FINERACT/Importing+Fineract+CN+Microservices+Into+IntelliJ
> > but not on Fineract 1.x
> >
> > Look forward to hearing from you all thanks.
> >
> > Regards Mua
> >
>


Re: Importing Fineract 1.x in IntelliJ

2019-03-11 Thread Awasum Yannick
Mua, Create a wiki page and document your findings then share on this
thread.


Thanks.

On Mon, Mar 11, 2019 at 2:15 PM Mua Rachmann  wrote:

> Hello everyone,
>
> On my journey of getting started with Apache Fineract 1.x i had some
> issues. I am new to all these but i found it challenging i could get myself
> a walk-around all by myself and with some little reserach.
>
> For general reasons i have been using IntelliJ for my java projects and it
> was but normal for such a project i use IntelliJ for development since i
> have a student licence for that.
>
> I found out importing Fineract was a problem for me(don't know if this is
> general) as it modified the gradle's wrapper  using the latest gradle i had
> '5.2.1'.  on my quest to solve this problem I wish intelliJ detects my
> gradle that comes when cloning the repo.
>
> I did a dirty solution not sure if this is the best way to do this but it
> worked for me. I copied the gradle directory from the firact-providers dir
> to the finract project and this worked.
>
> I think this can help others trying to import the project and running from
> the inbuilt terminal.
>
> Disadvantages - increase in size of the project since there are two gradle
> files.
>
> Let me all know your thought and how i could possibly document this. Since
> i see an import for Fineract CN on confluence here -
>
> https://cwiki.apache.org/confluence/display/FINERACT/Importing+Fineract+CN+Microservices+Into+IntelliJ
> but not on Fineract 1.x
>
> Look forward to hearing from you all thanks.
>
> Regards Mua
>


Re: Importing Fineract 1.x in IntelliJ

2019-03-11 Thread Kang Breder
Hello Mua.

Please how did you get your student licence. I will like to get mine but i
have tried to no avail

On Mon, Mar 11, 2019 at 2:15 PM Mua Rachmann  wrote:

> Hello everyone,
>
> On my journey of getting started with Apache Fineract 1.x i had some
> issues. I am new to all these but i found it challenging i could get myself
> a walk-around all by myself and with some little reserach.
>
> For general reasons i have been using IntelliJ for my java projects and it
> was but normal for such a project i use IntelliJ for development since i
> have a student licence for that.
>
> I found out importing Fineract was a problem for me(don't know if this is
> general) as it modified the gradle's wrapper  using the latest gradle i had
> '5.2.1'.  on my quest to solve this problem I wish intelliJ detects my
> gradle that comes when cloning the repo.
>
> I did a dirty solution not sure if this is the best way to do this but it
> worked for me. I copied the gradle directory from the firact-providers dir
> to the finract project and this worked.
>
> I think this can help others trying to import the project and running from
> the inbuilt terminal.
>
> Disadvantages - increase in size of the project since there are two gradle
> files.
>
> Let me all know your thought and how i could possibly document this. Since
> i see an import for Fineract CN on confluence here -
>
> https://cwiki.apache.org/confluence/display/FINERACT/Importing+Fineract+CN+Microservices+Into+IntelliJ
> but not on Fineract 1.x
>
> Look forward to hearing from you all thanks.
>
> Regards Mua
>


Importing Fineract 1.x in IntelliJ

2019-03-11 Thread Mua Rachmann
Hello everyone,

On my journey of getting started with Apache Fineract 1.x i had some
issues. I am new to all these but i found it challenging i could get myself
a walk-around all by myself and with some little reserach.

For general reasons i have been using IntelliJ for my java projects and it
was but normal for such a project i use IntelliJ for development since i
have a student licence for that.

I found out importing Fineract was a problem for me(don't know if this is
general) as it modified the gradle's wrapper  using the latest gradle i had
'5.2.1'.  on my quest to solve this problem I wish intelliJ detects my
gradle that comes when cloning the repo.

I did a dirty solution not sure if this is the best way to do this but it
worked for me. I copied the gradle directory from the firact-providers dir
to the finract project and this worked.

I think this can help others trying to import the project and running from
the inbuilt terminal.

Disadvantages - increase in size of the project since there are two gradle
files.

Let me all know your thought and how i could possibly document this. Since
i see an import for Fineract CN on confluence here -
https://cwiki.apache.org/confluence/display/FINERACT/Importing+Fineract+CN+Microservices+Into+IntelliJ
but not on Fineract 1.x

Look forward to hearing from you all thanks.

Regards Mua


Re: [Mifos-developer] Issues with the Community App

2019-03-11 Thread Ruphine Kengne
Good Work Mua, good it help.
 I will update the Readme for Linux users while you create that for Mac OS
users

Thanks

On Mon, 11 Mar 2019 at 12:31, Awasum Yannick 
wrote:

> Good... Create that User and Developer Documentation for the Mac PC.
> Please @mua
>
> On Mon, Mar 11, 2019 at 12:28 PM Mua Rachmann 
> wrote:
>
> > Hello Ruphile,
> >
> > In my case i am on Mac OS - El Captan and this instead worked for me
> > *gem install bundler* of which i ran the bundle install and was
> > successfull.
> >
> > It might help anyone on Mac OS.
> >
> > All is running perfectly fine i get the login screen. Thanks.
> >
> > I am already feeling myself at home. I love it here already. Look forward
> > to working with you all
> >
> >
> > Best Mua.
> >
> > On Mon, Mar 11, 2019 at 12:09 PM Mua Rachmann 
> > wrote:
> >
> > > Sure. Can this be included in the Readme.
> > >
> > > I thought getting the latest version of ruby will come with that.
> > >
> > > Regards
> > >
> > > On Mon, Mar 11, 2019 at 12:04 PM Ruphine Kengne <
> ruphineken...@gmail.com
> > >
> > > wrote:
> > >
> > >> Hi Mua,
> > >>
> > >> Please can  you run this command : *sudo apt install ruby-bundler *
> > >>  before running the bundle install command
> > >>
> > >> Regards
> > >>
> > >> On Mon, 11 Mar 2019 at 11:49, Mua Rachmann 
> > wrote:
> > >>
> > >> > Hi Ruphine, Daniel
> > >> >
> > >> > Upon installing Mifos Community app i get the same errors
> > >> >
> > >> > First the bundle install doesn't work and it gives this error
> > >> >
> > >> > Traceback (most recent call last):
> > >> > 2: from /usr/local/opt/ruby/bin/bundle:23:in `'
> > >> > 1: from
> > >> > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:302:in
> > >> > `activate_bin_path'
> > >> > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:283:in
> > >> > `find_spec_for_exe': can't find gem bundler (>= 0.a) with executable
> > >> bundle
> > >> > (Gem::GemNotFoundException)
> > >> >
> > >> > Secondly upon running grunt serve i have this error -
> > >> > https://pastebin.com/rKCbXKta
> > >> >
> > >> > Lastly when i run the index.html file i have the app just loading
> and
> > >> > console giving me this
> > >> > https://pastebin.com/eyB7AiQR
> > >> >
> > >> > Any help would be gladly appreciated thanks.
> > >> >
> > >> > Regards Mua
> > >> >
> > >> >
> > >> > On Sun, Mar 10, 2019 at 8:54 PM Fuh Debenick 
> > >> wrote:
> > >> >
> > >> > > Hello Ruphine,
> > >> > >
> > >> > > Thanks for that.
> > >> > >
> > >> > > Regards.
> > >> > >
> > >> > > On Sun, Mar 10, 2019 at 8:39 PM Ruphine Kengne <
> > >> ruphineken...@gmail.com>
> > >> > > wrote:
> > >> > >
> > >> > > > Hello Fuh,
> > >> > > >
> > >> > > > You can use pastebin.com to put the errors.
> > >> > > > It is more easier to use
> > >> > > >
> > >> > > > Then you paste the link here
> > >> > > >
> > >> > > > On Sun, 10 Mar 2019 at 20:37, Fuh Debenick <
> debenic...@gmail.com>
> > >> > wrote:
> > >> > > >
> > >> > > >> Hello Awasum,
> > >> > > >>
> > >> > > >> Thanks, let me do that.
> > >> > > >>
> > >> > > >> Regards.
> > >> > > >> Debenick
> > >> > > >>
> > >> > > >> On Sun, Mar 10, 2019 at 8:33 PM Awasum Yannick <
> > >> > > >> awasum.yann...@skylabase.com>
> > >> > > >> wrote:
> > >> > > >>
> > >> > > >> > Hello Fuh,
> > >> > > >> >
> > >> > > >> > This list does not take attachments. Use an external service
> > >> like:
> > >> > > >> > https://imgur.com/upload
> > >> > > >> >
> > >> > > >> > Then paste the image link here..
> > >> > > >> >
> > >> > > >> >
> > >> > > >> > Thanks.
> > >> > > >> > Awasum
> > >> > > >> >
> > >> > > >> > On Sun, Mar 10, 2019 at 8:29 PM Fuh Debenick <
> > >> debenic...@gmail.com>
> > >> > > >> wrote:
> > >> > > >> >
> > >> > > >> > > Hello Daniel Carlson,
> > >> > > >> > >
> > >> > > >> > > Thanks for the reply.
> > >> > > >> > > I attached a screenshot of my console, I wish it be
> helpful.
> > >> > > >> > >
> > >> > > >> > > Regards,
> > >> > > >> > > Fuh Debenick
> > >> > > >> > >
> > >> > > >> > > On Sun, Mar 10, 2019 at 8:23 PM Daniel Carlson <
> > >> > > dancarl...@gmail.com>
> > >> > > >> > > wrote:
> > >> > > >> > >
> > >> > > >> > >> Hello Debenick,
> > >> > > >> > >>
> > >> > > >> > >> What errors do you get in the console?
> > >> > > >> > >>
> > >> > > >> > >> Cheers!
> > >> > > >> > >>
> > >> > > >> > >> On Sun, Mar 10, 2019 at 8:18 PM Fuh Debenick <
> > >> > debenic...@gmail.com
> > >> > > >
> > >> > > >> > >> wrote:
> > >> > > >> > >>
> > >> > > >> > >> > Hello everyone,
> > >> > > >> > >> > I once set up my development environment on windows 10
> for
> > >> the
> > >> > > >> > community
> > >> > > >> > >> > app and everything went well. For some reasons I decided
> > to
> > >> > work
> > >> > > >> with
> > >> > > >> > >> > ubuntu 16.04, I followed all the instructions as they
> were
> > >> on
> > >> > > >> github
> > >> > > >> > >> > repository of the community app (
> > >> > > >> > >> https://github.com/openMF/community-app),
> > >> > > >> > >> > things were smooth 

Re: [Mifos-developer] Issues with the Community App

2019-03-11 Thread Awasum Yannick
Good... Create that User and Developer Documentation for the Mac PC.
Please @mua

On Mon, Mar 11, 2019 at 12:28 PM Mua Rachmann  wrote:

> Hello Ruphile,
>
> In my case i am on Mac OS - El Captan and this instead worked for me
> *gem install bundler* of which i ran the bundle install and was
> successfull.
>
> It might help anyone on Mac OS.
>
> All is running perfectly fine i get the login screen. Thanks.
>
> I am already feeling myself at home. I love it here already. Look forward
> to working with you all
>
>
> Best Mua.
>
> On Mon, Mar 11, 2019 at 12:09 PM Mua Rachmann 
> wrote:
>
> > Sure. Can this be included in the Readme.
> >
> > I thought getting the latest version of ruby will come with that.
> >
> > Regards
> >
> > On Mon, Mar 11, 2019 at 12:04 PM Ruphine Kengne  >
> > wrote:
> >
> >> Hi Mua,
> >>
> >> Please can  you run this command : *sudo apt install ruby-bundler *
> >>  before running the bundle install command
> >>
> >> Regards
> >>
> >> On Mon, 11 Mar 2019 at 11:49, Mua Rachmann 
> wrote:
> >>
> >> > Hi Ruphine, Daniel
> >> >
> >> > Upon installing Mifos Community app i get the same errors
> >> >
> >> > First the bundle install doesn't work and it gives this error
> >> >
> >> > Traceback (most recent call last):
> >> > 2: from /usr/local/opt/ruby/bin/bundle:23:in `'
> >> > 1: from
> >> > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:302:in
> >> > `activate_bin_path'
> >> > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:283:in
> >> > `find_spec_for_exe': can't find gem bundler (>= 0.a) with executable
> >> bundle
> >> > (Gem::GemNotFoundException)
> >> >
> >> > Secondly upon running grunt serve i have this error -
> >> > https://pastebin.com/rKCbXKta
> >> >
> >> > Lastly when i run the index.html file i have the app just loading and
> >> > console giving me this
> >> > https://pastebin.com/eyB7AiQR
> >> >
> >> > Any help would be gladly appreciated thanks.
> >> >
> >> > Regards Mua
> >> >
> >> >
> >> > On Sun, Mar 10, 2019 at 8:54 PM Fuh Debenick 
> >> wrote:
> >> >
> >> > > Hello Ruphine,
> >> > >
> >> > > Thanks for that.
> >> > >
> >> > > Regards.
> >> > >
> >> > > On Sun, Mar 10, 2019 at 8:39 PM Ruphine Kengne <
> >> ruphineken...@gmail.com>
> >> > > wrote:
> >> > >
> >> > > > Hello Fuh,
> >> > > >
> >> > > > You can use pastebin.com to put the errors.
> >> > > > It is more easier to use
> >> > > >
> >> > > > Then you paste the link here
> >> > > >
> >> > > > On Sun, 10 Mar 2019 at 20:37, Fuh Debenick 
> >> > wrote:
> >> > > >
> >> > > >> Hello Awasum,
> >> > > >>
> >> > > >> Thanks, let me do that.
> >> > > >>
> >> > > >> Regards.
> >> > > >> Debenick
> >> > > >>
> >> > > >> On Sun, Mar 10, 2019 at 8:33 PM Awasum Yannick <
> >> > > >> awasum.yann...@skylabase.com>
> >> > > >> wrote:
> >> > > >>
> >> > > >> > Hello Fuh,
> >> > > >> >
> >> > > >> > This list does not take attachments. Use an external service
> >> like:
> >> > > >> > https://imgur.com/upload
> >> > > >> >
> >> > > >> > Then paste the image link here..
> >> > > >> >
> >> > > >> >
> >> > > >> > Thanks.
> >> > > >> > Awasum
> >> > > >> >
> >> > > >> > On Sun, Mar 10, 2019 at 8:29 PM Fuh Debenick <
> >> debenic...@gmail.com>
> >> > > >> wrote:
> >> > > >> >
> >> > > >> > > Hello Daniel Carlson,
> >> > > >> > >
> >> > > >> > > Thanks for the reply.
> >> > > >> > > I attached a screenshot of my console, I wish it be helpful.
> >> > > >> > >
> >> > > >> > > Regards,
> >> > > >> > > Fuh Debenick
> >> > > >> > >
> >> > > >> > > On Sun, Mar 10, 2019 at 8:23 PM Daniel Carlson <
> >> > > dancarl...@gmail.com>
> >> > > >> > > wrote:
> >> > > >> > >
> >> > > >> > >> Hello Debenick,
> >> > > >> > >>
> >> > > >> > >> What errors do you get in the console?
> >> > > >> > >>
> >> > > >> > >> Cheers!
> >> > > >> > >>
> >> > > >> > >> On Sun, Mar 10, 2019 at 8:18 PM Fuh Debenick <
> >> > debenic...@gmail.com
> >> > > >
> >> > > >> > >> wrote:
> >> > > >> > >>
> >> > > >> > >> > Hello everyone,
> >> > > >> > >> > I once set up my development environment on windows 10 for
> >> the
> >> > > >> > community
> >> > > >> > >> > app and everything went well. For some reasons I decided
> to
> >> > work
> >> > > >> with
> >> > > >> > >> > ubuntu 16.04, I followed all the instructions as they were
> >> on
> >> > > >> github
> >> > > >> > >> > repository of the community app (
> >> > > >> > >> https://github.com/openMF/community-app),
> >> > > >> > >> > things were smooth until when I served the app. The issue
> I
> >> am
> >> > > >> having
> >> > > >> > is
> >> > > >> > >> > that after running "grunt serve" the app has been
> displaying
> >> > the
> >> > > >> > Loading
> >> > > >> > >> > Mifos page for over an hour. Please what could be the
> >> problem?
> >> > > >> > >> >
> >> > > >> > >> > Thanks
> >> > > >> > >> > Fuh Debenick
> >> > > >> > >> >
> >> > > >> > >>
> >> > > >> > >
> >> > > >> >
> >> > > >>
> >> > > > Mifos-developer mailing list
> >> > > > mifos-develo...@lists.sourceforge.net
> >> > > > Unsubscribe 

Re: [Mifos-developer] Issues with the Community App

2019-03-11 Thread Mua Rachmann
Hello Ruphile,

In my case i am on Mac OS - El Captan and this instead worked for me
*gem install bundler* of which i ran the bundle install and was successfull.

It might help anyone on Mac OS.

All is running perfectly fine i get the login screen. Thanks.

I am already feeling myself at home. I love it here already. Look forward
to working with you all


Best Mua.

On Mon, Mar 11, 2019 at 12:09 PM Mua Rachmann  wrote:

> Sure. Can this be included in the Readme.
>
> I thought getting the latest version of ruby will come with that.
>
> Regards
>
> On Mon, Mar 11, 2019 at 12:04 PM Ruphine Kengne 
> wrote:
>
>> Hi Mua,
>>
>> Please can  you run this command : *sudo apt install ruby-bundler *
>>  before running the bundle install command
>>
>> Regards
>>
>> On Mon, 11 Mar 2019 at 11:49, Mua Rachmann  wrote:
>>
>> > Hi Ruphine, Daniel
>> >
>> > Upon installing Mifos Community app i get the same errors
>> >
>> > First the bundle install doesn't work and it gives this error
>> >
>> > Traceback (most recent call last):
>> > 2: from /usr/local/opt/ruby/bin/bundle:23:in `'
>> > 1: from
>> > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:302:in
>> > `activate_bin_path'
>> > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:283:in
>> > `find_spec_for_exe': can't find gem bundler (>= 0.a) with executable
>> bundle
>> > (Gem::GemNotFoundException)
>> >
>> > Secondly upon running grunt serve i have this error -
>> > https://pastebin.com/rKCbXKta
>> >
>> > Lastly when i run the index.html file i have the app just loading and
>> > console giving me this
>> > https://pastebin.com/eyB7AiQR
>> >
>> > Any help would be gladly appreciated thanks.
>> >
>> > Regards Mua
>> >
>> >
>> > On Sun, Mar 10, 2019 at 8:54 PM Fuh Debenick 
>> wrote:
>> >
>> > > Hello Ruphine,
>> > >
>> > > Thanks for that.
>> > >
>> > > Regards.
>> > >
>> > > On Sun, Mar 10, 2019 at 8:39 PM Ruphine Kengne <
>> ruphineken...@gmail.com>
>> > > wrote:
>> > >
>> > > > Hello Fuh,
>> > > >
>> > > > You can use pastebin.com to put the errors.
>> > > > It is more easier to use
>> > > >
>> > > > Then you paste the link here
>> > > >
>> > > > On Sun, 10 Mar 2019 at 20:37, Fuh Debenick 
>> > wrote:
>> > > >
>> > > >> Hello Awasum,
>> > > >>
>> > > >> Thanks, let me do that.
>> > > >>
>> > > >> Regards.
>> > > >> Debenick
>> > > >>
>> > > >> On Sun, Mar 10, 2019 at 8:33 PM Awasum Yannick <
>> > > >> awasum.yann...@skylabase.com>
>> > > >> wrote:
>> > > >>
>> > > >> > Hello Fuh,
>> > > >> >
>> > > >> > This list does not take attachments. Use an external service
>> like:
>> > > >> > https://imgur.com/upload
>> > > >> >
>> > > >> > Then paste the image link here..
>> > > >> >
>> > > >> >
>> > > >> > Thanks.
>> > > >> > Awasum
>> > > >> >
>> > > >> > On Sun, Mar 10, 2019 at 8:29 PM Fuh Debenick <
>> debenic...@gmail.com>
>> > > >> wrote:
>> > > >> >
>> > > >> > > Hello Daniel Carlson,
>> > > >> > >
>> > > >> > > Thanks for the reply.
>> > > >> > > I attached a screenshot of my console, I wish it be helpful.
>> > > >> > >
>> > > >> > > Regards,
>> > > >> > > Fuh Debenick
>> > > >> > >
>> > > >> > > On Sun, Mar 10, 2019 at 8:23 PM Daniel Carlson <
>> > > dancarl...@gmail.com>
>> > > >> > > wrote:
>> > > >> > >
>> > > >> > >> Hello Debenick,
>> > > >> > >>
>> > > >> > >> What errors do you get in the console?
>> > > >> > >>
>> > > >> > >> Cheers!
>> > > >> > >>
>> > > >> > >> On Sun, Mar 10, 2019 at 8:18 PM Fuh Debenick <
>> > debenic...@gmail.com
>> > > >
>> > > >> > >> wrote:
>> > > >> > >>
>> > > >> > >> > Hello everyone,
>> > > >> > >> > I once set up my development environment on windows 10 for
>> the
>> > > >> > community
>> > > >> > >> > app and everything went well. For some reasons I decided to
>> > work
>> > > >> with
>> > > >> > >> > ubuntu 16.04, I followed all the instructions as they were
>> on
>> > > >> github
>> > > >> > >> > repository of the community app (
>> > > >> > >> https://github.com/openMF/community-app),
>> > > >> > >> > things were smooth until when I served the app. The issue I
>> am
>> > > >> having
>> > > >> > is
>> > > >> > >> > that after running "grunt serve" the app has been displaying
>> > the
>> > > >> > Loading
>> > > >> > >> > Mifos page for over an hour. Please what could be the
>> problem?
>> > > >> > >> >
>> > > >> > >> > Thanks
>> > > >> > >> > Fuh Debenick
>> > > >> > >> >
>> > > >> > >>
>> > > >> > >
>> > > >> >
>> > > >>
>> > > > Mifos-developer mailing list
>> > > > mifos-develo...@lists.sourceforge.net
>> > > > Unsubscribe or change settings at:
>> > > > https://lists.sourceforge.net/lists/listinfo/mifos-developer
>> > >
>> >
>>
>


Re: [Mifos-developer] Issues with the Community App

2019-03-11 Thread Awasum Yannick
Mua, Send a PR with your fix to the README.

And It will be good to take the UI community app things to the Mifos List
tooo.

On Mon, Mar 11, 2019 at 12:10 PM Mua Rachmann  wrote:

> Sure. Can this be included in the Readme.
>
> I thought getting the latest version of ruby will come with that.
>
> Regards
>
> On Mon, Mar 11, 2019 at 12:04 PM Ruphine Kengne 
> wrote:
>
> > Hi Mua,
> >
> > Please can  you run this command : *sudo apt install ruby-bundler *
> >  before running the bundle install command
> >
> > Regards
> >
> > On Mon, 11 Mar 2019 at 11:49, Mua Rachmann 
> wrote:
> >
> > > Hi Ruphine, Daniel
> > >
> > > Upon installing Mifos Community app i get the same errors
> > >
> > > First the bundle install doesn't work and it gives this error
> > >
> > > Traceback (most recent call last):
> > > 2: from /usr/local/opt/ruby/bin/bundle:23:in `'
> > > 1: from
> > > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:302:in
> > > `activate_bin_path'
> > > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:283:in
> > > `find_spec_for_exe': can't find gem bundler (>= 0.a) with executable
> > bundle
> > > (Gem::GemNotFoundException)
> > >
> > > Secondly upon running grunt serve i have this error -
> > > https://pastebin.com/rKCbXKta
> > >
> > > Lastly when i run the index.html file i have the app just loading and
> > > console giving me this
> > > https://pastebin.com/eyB7AiQR
> > >
> > > Any help would be gladly appreciated thanks.
> > >
> > > Regards Mua
> > >
> > >
> > > On Sun, Mar 10, 2019 at 8:54 PM Fuh Debenick 
> > wrote:
> > >
> > > > Hello Ruphine,
> > > >
> > > > Thanks for that.
> > > >
> > > > Regards.
> > > >
> > > > On Sun, Mar 10, 2019 at 8:39 PM Ruphine Kengne <
> > ruphineken...@gmail.com>
> > > > wrote:
> > > >
> > > > > Hello Fuh,
> > > > >
> > > > > You can use pastebin.com to put the errors.
> > > > > It is more easier to use
> > > > >
> > > > > Then you paste the link here
> > > > >
> > > > > On Sun, 10 Mar 2019 at 20:37, Fuh Debenick 
> > > wrote:
> > > > >
> > > > >> Hello Awasum,
> > > > >>
> > > > >> Thanks, let me do that.
> > > > >>
> > > > >> Regards.
> > > > >> Debenick
> > > > >>
> > > > >> On Sun, Mar 10, 2019 at 8:33 PM Awasum Yannick <
> > > > >> awasum.yann...@skylabase.com>
> > > > >> wrote:
> > > > >>
> > > > >> > Hello Fuh,
> > > > >> >
> > > > >> > This list does not take attachments. Use an external service
> like:
> > > > >> > https://imgur.com/upload
> > > > >> >
> > > > >> > Then paste the image link here..
> > > > >> >
> > > > >> >
> > > > >> > Thanks.
> > > > >> > Awasum
> > > > >> >
> > > > >> > On Sun, Mar 10, 2019 at 8:29 PM Fuh Debenick <
> > debenic...@gmail.com>
> > > > >> wrote:
> > > > >> >
> > > > >> > > Hello Daniel Carlson,
> > > > >> > >
> > > > >> > > Thanks for the reply.
> > > > >> > > I attached a screenshot of my console, I wish it be helpful.
> > > > >> > >
> > > > >> > > Regards,
> > > > >> > > Fuh Debenick
> > > > >> > >
> > > > >> > > On Sun, Mar 10, 2019 at 8:23 PM Daniel Carlson <
> > > > dancarl...@gmail.com>
> > > > >> > > wrote:
> > > > >> > >
> > > > >> > >> Hello Debenick,
> > > > >> > >>
> > > > >> > >> What errors do you get in the console?
> > > > >> > >>
> > > > >> > >> Cheers!
> > > > >> > >>
> > > > >> > >> On Sun, Mar 10, 2019 at 8:18 PM Fuh Debenick <
> > > debenic...@gmail.com
> > > > >
> > > > >> > >> wrote:
> > > > >> > >>
> > > > >> > >> > Hello everyone,
> > > > >> > >> > I once set up my development environment on windows 10 for
> > the
> > > > >> > community
> > > > >> > >> > app and everything went well. For some reasons I decided to
> > > work
> > > > >> with
> > > > >> > >> > ubuntu 16.04, I followed all the instructions as they were
> on
> > > > >> github
> > > > >> > >> > repository of the community app (
> > > > >> > >> https://github.com/openMF/community-app),
> > > > >> > >> > things were smooth until when I served the app. The issue I
> > am
> > > > >> having
> > > > >> > is
> > > > >> > >> > that after running "grunt serve" the app has been
> displaying
> > > the
> > > > >> > Loading
> > > > >> > >> > Mifos page for over an hour. Please what could be the
> > problem?
> > > > >> > >> >
> > > > >> > >> > Thanks
> > > > >> > >> > Fuh Debenick
> > > > >> > >> >
> > > > >> > >>
> > > > >> > >
> > > > >> >
> > > > >>
> > > > > Mifos-developer mailing list
> > > > > mifos-develo...@lists.sourceforge.net
> > > > > Unsubscribe or change settings at:
> > > > > https://lists.sourceforge.net/lists/listinfo/mifos-developer
> > > >
> > >
> >
>


Re: [Mifos-developer] Issues with the Community App

2019-03-11 Thread Ruphine Kengne
Yeah Mua, I will include that in the Readme and send a PR.

Please did that solve your problem??

Regards.



On Mon, 11 Mar 2019 at 12:10, Mua Rachmann  wrote:

> Sure. Can this be included in the Readme.
>
> I thought getting the latest version of ruby will come with that.
>
> Regards
>
> On Mon, Mar 11, 2019 at 12:04 PM Ruphine Kengne 
> wrote:
>
> > Hi Mua,
> >
> > Please can  you run this command : *sudo apt install ruby-bundler *
> >  before running the bundle install command
> >
> > Regards
> >
> > On Mon, 11 Mar 2019 at 11:49, Mua Rachmann 
> wrote:
> >
> > > Hi Ruphine, Daniel
> > >
> > > Upon installing Mifos Community app i get the same errors
> > >
> > > First the bundle install doesn't work and it gives this error
> > >
> > > Traceback (most recent call last):
> > > 2: from /usr/local/opt/ruby/bin/bundle:23:in `'
> > > 1: from
> > > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:302:in
> > > `activate_bin_path'
> > > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:283:in
> > > `find_spec_for_exe': can't find gem bundler (>= 0.a) with executable
> > bundle
> > > (Gem::GemNotFoundException)
> > >
> > > Secondly upon running grunt serve i have this error -
> > > https://pastebin.com/rKCbXKta
> > >
> > > Lastly when i run the index.html file i have the app just loading and
> > > console giving me this
> > > https://pastebin.com/eyB7AiQR
> > >
> > > Any help would be gladly appreciated thanks.
> > >
> > > Regards Mua
> > >
> > >
> > > On Sun, Mar 10, 2019 at 8:54 PM Fuh Debenick 
> > wrote:
> > >
> > > > Hello Ruphine,
> > > >
> > > > Thanks for that.
> > > >
> > > > Regards.
> > > >
> > > > On Sun, Mar 10, 2019 at 8:39 PM Ruphine Kengne <
> > ruphineken...@gmail.com>
> > > > wrote:
> > > >
> > > > > Hello Fuh,
> > > > >
> > > > > You can use pastebin.com to put the errors.
> > > > > It is more easier to use
> > > > >
> > > > > Then you paste the link here
> > > > >
> > > > > On Sun, 10 Mar 2019 at 20:37, Fuh Debenick 
> > > wrote:
> > > > >
> > > > >> Hello Awasum,
> > > > >>
> > > > >> Thanks, let me do that.
> > > > >>
> > > > >> Regards.
> > > > >> Debenick
> > > > >>
> > > > >> On Sun, Mar 10, 2019 at 8:33 PM Awasum Yannick <
> > > > >> awasum.yann...@skylabase.com>
> > > > >> wrote:
> > > > >>
> > > > >> > Hello Fuh,
> > > > >> >
> > > > >> > This list does not take attachments. Use an external service
> like:
> > > > >> > https://imgur.com/upload
> > > > >> >
> > > > >> > Then paste the image link here..
> > > > >> >
> > > > >> >
> > > > >> > Thanks.
> > > > >> > Awasum
> > > > >> >
> > > > >> > On Sun, Mar 10, 2019 at 8:29 PM Fuh Debenick <
> > debenic...@gmail.com>
> > > > >> wrote:
> > > > >> >
> > > > >> > > Hello Daniel Carlson,
> > > > >> > >
> > > > >> > > Thanks for the reply.
> > > > >> > > I attached a screenshot of my console, I wish it be helpful.
> > > > >> > >
> > > > >> > > Regards,
> > > > >> > > Fuh Debenick
> > > > >> > >
> > > > >> > > On Sun, Mar 10, 2019 at 8:23 PM Daniel Carlson <
> > > > dancarl...@gmail.com>
> > > > >> > > wrote:
> > > > >> > >
> > > > >> > >> Hello Debenick,
> > > > >> > >>
> > > > >> > >> What errors do you get in the console?
> > > > >> > >>
> > > > >> > >> Cheers!
> > > > >> > >>
> > > > >> > >> On Sun, Mar 10, 2019 at 8:18 PM Fuh Debenick <
> > > debenic...@gmail.com
> > > > >
> > > > >> > >> wrote:
> > > > >> > >>
> > > > >> > >> > Hello everyone,
> > > > >> > >> > I once set up my development environment on windows 10 for
> > the
> > > > >> > community
> > > > >> > >> > app and everything went well. For some reasons I decided to
> > > work
> > > > >> with
> > > > >> > >> > ubuntu 16.04, I followed all the instructions as they were
> on
> > > > >> github
> > > > >> > >> > repository of the community app (
> > > > >> > >> https://github.com/openMF/community-app),
> > > > >> > >> > things were smooth until when I served the app. The issue I
> > am
> > > > >> having
> > > > >> > is
> > > > >> > >> > that after running "grunt serve" the app has been
> displaying
> > > the
> > > > >> > Loading
> > > > >> > >> > Mifos page for over an hour. Please what could be the
> > problem?
> > > > >> > >> >
> > > > >> > >> > Thanks
> > > > >> > >> > Fuh Debenick
> > > > >> > >> >
> > > > >> > >>
> > > > >> > >
> > > > >> >
> > > > >>
> > > > > Mifos-developer mailing list
> > > > > mifos-develo...@lists.sourceforge.net
> > > > > Unsubscribe or change settings at:
> > > > > https://lists.sourceforge.net/lists/listinfo/mifos-developer
> > > >
> > >
> >
>


Re: [Mifos-developer] Issues with the Community App

2019-03-11 Thread Mua Rachmann
Sure. Can this be included in the Readme.

I thought getting the latest version of ruby will come with that.

Regards

On Mon, Mar 11, 2019 at 12:04 PM Ruphine Kengne 
wrote:

> Hi Mua,
>
> Please can  you run this command : *sudo apt install ruby-bundler *
>  before running the bundle install command
>
> Regards
>
> On Mon, 11 Mar 2019 at 11:49, Mua Rachmann  wrote:
>
> > Hi Ruphine, Daniel
> >
> > Upon installing Mifos Community app i get the same errors
> >
> > First the bundle install doesn't work and it gives this error
> >
> > Traceback (most recent call last):
> > 2: from /usr/local/opt/ruby/bin/bundle:23:in `'
> > 1: from
> > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:302:in
> > `activate_bin_path'
> > /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:283:in
> > `find_spec_for_exe': can't find gem bundler (>= 0.a) with executable
> bundle
> > (Gem::GemNotFoundException)
> >
> > Secondly upon running grunt serve i have this error -
> > https://pastebin.com/rKCbXKta
> >
> > Lastly when i run the index.html file i have the app just loading and
> > console giving me this
> > https://pastebin.com/eyB7AiQR
> >
> > Any help would be gladly appreciated thanks.
> >
> > Regards Mua
> >
> >
> > On Sun, Mar 10, 2019 at 8:54 PM Fuh Debenick 
> wrote:
> >
> > > Hello Ruphine,
> > >
> > > Thanks for that.
> > >
> > > Regards.
> > >
> > > On Sun, Mar 10, 2019 at 8:39 PM Ruphine Kengne <
> ruphineken...@gmail.com>
> > > wrote:
> > >
> > > > Hello Fuh,
> > > >
> > > > You can use pastebin.com to put the errors.
> > > > It is more easier to use
> > > >
> > > > Then you paste the link here
> > > >
> > > > On Sun, 10 Mar 2019 at 20:37, Fuh Debenick 
> > wrote:
> > > >
> > > >> Hello Awasum,
> > > >>
> > > >> Thanks, let me do that.
> > > >>
> > > >> Regards.
> > > >> Debenick
> > > >>
> > > >> On Sun, Mar 10, 2019 at 8:33 PM Awasum Yannick <
> > > >> awasum.yann...@skylabase.com>
> > > >> wrote:
> > > >>
> > > >> > Hello Fuh,
> > > >> >
> > > >> > This list does not take attachments. Use an external service like:
> > > >> > https://imgur.com/upload
> > > >> >
> > > >> > Then paste the image link here..
> > > >> >
> > > >> >
> > > >> > Thanks.
> > > >> > Awasum
> > > >> >
> > > >> > On Sun, Mar 10, 2019 at 8:29 PM Fuh Debenick <
> debenic...@gmail.com>
> > > >> wrote:
> > > >> >
> > > >> > > Hello Daniel Carlson,
> > > >> > >
> > > >> > > Thanks for the reply.
> > > >> > > I attached a screenshot of my console, I wish it be helpful.
> > > >> > >
> > > >> > > Regards,
> > > >> > > Fuh Debenick
> > > >> > >
> > > >> > > On Sun, Mar 10, 2019 at 8:23 PM Daniel Carlson <
> > > dancarl...@gmail.com>
> > > >> > > wrote:
> > > >> > >
> > > >> > >> Hello Debenick,
> > > >> > >>
> > > >> > >> What errors do you get in the console?
> > > >> > >>
> > > >> > >> Cheers!
> > > >> > >>
> > > >> > >> On Sun, Mar 10, 2019 at 8:18 PM Fuh Debenick <
> > debenic...@gmail.com
> > > >
> > > >> > >> wrote:
> > > >> > >>
> > > >> > >> > Hello everyone,
> > > >> > >> > I once set up my development environment on windows 10 for
> the
> > > >> > community
> > > >> > >> > app and everything went well. For some reasons I decided to
> > work
> > > >> with
> > > >> > >> > ubuntu 16.04, I followed all the instructions as they were on
> > > >> github
> > > >> > >> > repository of the community app (
> > > >> > >> https://github.com/openMF/community-app),
> > > >> > >> > things were smooth until when I served the app. The issue I
> am
> > > >> having
> > > >> > is
> > > >> > >> > that after running "grunt serve" the app has been displaying
> > the
> > > >> > Loading
> > > >> > >> > Mifos page for over an hour. Please what could be the
> problem?
> > > >> > >> >
> > > >> > >> > Thanks
> > > >> > >> > Fuh Debenick
> > > >> > >> >
> > > >> > >>
> > > >> > >
> > > >> >
> > > >>
> > > > Mifos-developer mailing list
> > > > mifos-develo...@lists.sourceforge.net
> > > > Unsubscribe or change settings at:
> > > > https://lists.sourceforge.net/lists/listinfo/mifos-developer
> > >
> >
>


Re: [Mifos-developer] Issues with the Community App

2019-03-11 Thread Ruphine Kengne
Hi Mua,

Please can  you run this command : *sudo apt install ruby-bundler *
 before running the bundle install command

Regards

On Mon, 11 Mar 2019 at 11:49, Mua Rachmann  wrote:

> Hi Ruphine, Daniel
>
> Upon installing Mifos Community app i get the same errors
>
> First the bundle install doesn't work and it gives this error
>
> Traceback (most recent call last):
> 2: from /usr/local/opt/ruby/bin/bundle:23:in `'
> 1: from
> /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:302:in
> `activate_bin_path'
> /usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:283:in
> `find_spec_for_exe': can't find gem bundler (>= 0.a) with executable bundle
> (Gem::GemNotFoundException)
>
> Secondly upon running grunt serve i have this error -
> https://pastebin.com/rKCbXKta
>
> Lastly when i run the index.html file i have the app just loading and
> console giving me this
> https://pastebin.com/eyB7AiQR
>
> Any help would be gladly appreciated thanks.
>
> Regards Mua
>
>
> On Sun, Mar 10, 2019 at 8:54 PM Fuh Debenick  wrote:
>
> > Hello Ruphine,
> >
> > Thanks for that.
> >
> > Regards.
> >
> > On Sun, Mar 10, 2019 at 8:39 PM Ruphine Kengne 
> > wrote:
> >
> > > Hello Fuh,
> > >
> > > You can use pastebin.com to put the errors.
> > > It is more easier to use
> > >
> > > Then you paste the link here
> > >
> > > On Sun, 10 Mar 2019 at 20:37, Fuh Debenick 
> wrote:
> > >
> > >> Hello Awasum,
> > >>
> > >> Thanks, let me do that.
> > >>
> > >> Regards.
> > >> Debenick
> > >>
> > >> On Sun, Mar 10, 2019 at 8:33 PM Awasum Yannick <
> > >> awasum.yann...@skylabase.com>
> > >> wrote:
> > >>
> > >> > Hello Fuh,
> > >> >
> > >> > This list does not take attachments. Use an external service like:
> > >> > https://imgur.com/upload
> > >> >
> > >> > Then paste the image link here..
> > >> >
> > >> >
> > >> > Thanks.
> > >> > Awasum
> > >> >
> > >> > On Sun, Mar 10, 2019 at 8:29 PM Fuh Debenick 
> > >> wrote:
> > >> >
> > >> > > Hello Daniel Carlson,
> > >> > >
> > >> > > Thanks for the reply.
> > >> > > I attached a screenshot of my console, I wish it be helpful.
> > >> > >
> > >> > > Regards,
> > >> > > Fuh Debenick
> > >> > >
> > >> > > On Sun, Mar 10, 2019 at 8:23 PM Daniel Carlson <
> > dancarl...@gmail.com>
> > >> > > wrote:
> > >> > >
> > >> > >> Hello Debenick,
> > >> > >>
> > >> > >> What errors do you get in the console?
> > >> > >>
> > >> > >> Cheers!
> > >> > >>
> > >> > >> On Sun, Mar 10, 2019 at 8:18 PM Fuh Debenick <
> debenic...@gmail.com
> > >
> > >> > >> wrote:
> > >> > >>
> > >> > >> > Hello everyone,
> > >> > >> > I once set up my development environment on windows 10 for the
> > >> > community
> > >> > >> > app and everything went well. For some reasons I decided to
> work
> > >> with
> > >> > >> > ubuntu 16.04, I followed all the instructions as they were on
> > >> github
> > >> > >> > repository of the community app (
> > >> > >> https://github.com/openMF/community-app),
> > >> > >> > things were smooth until when I served the app. The issue I am
> > >> having
> > >> > is
> > >> > >> > that after running "grunt serve" the app has been displaying
> the
> > >> > Loading
> > >> > >> > Mifos page for over an hour. Please what could be the problem?
> > >> > >> >
> > >> > >> > Thanks
> > >> > >> > Fuh Debenick
> > >> > >> >
> > >> > >>
> > >> > >
> > >> >
> > >>
> > > Mifos-developer mailing list
> > > mifos-develo...@lists.sourceforge.net
> > > Unsubscribe or change settings at:
> > > https://lists.sourceforge.net/lists/listinfo/mifos-developer
> >
>


Re: [Mifos-developer] Issues with the Community App

2019-03-11 Thread Mua Rachmann
Hi Ruphine, Daniel

Upon installing Mifos Community app i get the same errors

First the bundle install doesn't work and it gives this error

Traceback (most recent call last):
2: from /usr/local/opt/ruby/bin/bundle:23:in `'
1: from
/usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:302:in
`activate_bin_path'
/usr/local/Cellar/ruby/2.6.1/lib/ruby/2.6.0/rubygems.rb:283:in
`find_spec_for_exe': can't find gem bundler (>= 0.a) with executable bundle
(Gem::GemNotFoundException)

Secondly upon running grunt serve i have this error -
https://pastebin.com/rKCbXKta

Lastly when i run the index.html file i have the app just loading and
console giving me this
https://pastebin.com/eyB7AiQR

Any help would be gladly appreciated thanks.

Regards Mua


On Sun, Mar 10, 2019 at 8:54 PM Fuh Debenick  wrote:

> Hello Ruphine,
>
> Thanks for that.
>
> Regards.
>
> On Sun, Mar 10, 2019 at 8:39 PM Ruphine Kengne 
> wrote:
>
> > Hello Fuh,
> >
> > You can use pastebin.com to put the errors.
> > It is more easier to use
> >
> > Then you paste the link here
> >
> > On Sun, 10 Mar 2019 at 20:37, Fuh Debenick  wrote:
> >
> >> Hello Awasum,
> >>
> >> Thanks, let me do that.
> >>
> >> Regards.
> >> Debenick
> >>
> >> On Sun, Mar 10, 2019 at 8:33 PM Awasum Yannick <
> >> awasum.yann...@skylabase.com>
> >> wrote:
> >>
> >> > Hello Fuh,
> >> >
> >> > This list does not take attachments. Use an external service like:
> >> > https://imgur.com/upload
> >> >
> >> > Then paste the image link here..
> >> >
> >> >
> >> > Thanks.
> >> > Awasum
> >> >
> >> > On Sun, Mar 10, 2019 at 8:29 PM Fuh Debenick 
> >> wrote:
> >> >
> >> > > Hello Daniel Carlson,
> >> > >
> >> > > Thanks for the reply.
> >> > > I attached a screenshot of my console, I wish it be helpful.
> >> > >
> >> > > Regards,
> >> > > Fuh Debenick
> >> > >
> >> > > On Sun, Mar 10, 2019 at 8:23 PM Daniel Carlson <
> dancarl...@gmail.com>
> >> > > wrote:
> >> > >
> >> > >> Hello Debenick,
> >> > >>
> >> > >> What errors do you get in the console?
> >> > >>
> >> > >> Cheers!
> >> > >>
> >> > >> On Sun, Mar 10, 2019 at 8:18 PM Fuh Debenick  >
> >> > >> wrote:
> >> > >>
> >> > >> > Hello everyone,
> >> > >> > I once set up my development environment on windows 10 for the
> >> > community
> >> > >> > app and everything went well. For some reasons I decided to work
> >> with
> >> > >> > ubuntu 16.04, I followed all the instructions as they were on
> >> github
> >> > >> > repository of the community app (
> >> > >> https://github.com/openMF/community-app),
> >> > >> > things were smooth until when I served the app. The issue I am
> >> having
> >> > is
> >> > >> > that after running "grunt serve" the app has been displaying the
> >> > Loading
> >> > >> > Mifos page for over an hour. Please what could be the problem?
> >> > >> >
> >> > >> > Thanks
> >> > >> > Fuh Debenick
> >> > >> >
> >> > >>
> >> > >
> >> >
> >>
> > Mifos-developer mailing list
> > mifos-develo...@lists.sourceforge.net
> > Unsubscribe or change settings at:
> > https://lists.sourceforge.net/lists/listinfo/mifos-developer
>


Re: Finding beginner's issues in JIRA

2019-03-11 Thread Courage Angeh
Hi Myrle,

I sounds good to me.

On Mon, Mar 11, 2019, 5:55 AM Myrle Krantz  wrote:

> So what do you all think of:  "starter" as a label.
>
> And further, what do you all think of making this label be focused at
> people who are new to our project, but not necessarily new to programming?
>
> Best Regards,
> Myrle
>
>
> On Sun, Mar 10, 2019 at 3:15 PM Awasum Yannick  wrote:
>
> > Myrle, I dont think we have such tags for beginner issues both Fineract
> 1.x
> > and Fineract CN.
> >
> > On Sun, Mar 10, 2019 at 2:13 PM yildirim.oguzha...@gmail.com <
> > yildirim.oguzha...@gmail.com> wrote:
> >
> > > I check jira for 2 months now but i don't see anything like that.
> Spring
> > > project has first-timers-only tag, something like that cloud work.
> > >
> > > On 2019/03/10 11:29:23, Myrle Krantz  wrote:
> > > > Hey all,
> > > >
> > > > Do we have a label for beginner's issues?  I could not find one.  I
> > > > searched Confluence, and I looked through a few issues in JIRA too.
> > > (But I
> > > > had to stop looking because right now there's maintenance for JIRA.)
> > > >
> > > > If we want our project to be welcoming to newcomers, we need to make
> it
> > > > easier to find beginner's issues.
> > > >
> > > > If we already have such a label, let me know, and I'll add a search
> for
> > > it
> > > > to one of our getting started pages in confluence.  If not, I'll
> invent
> > > one.
> > > >
> > > > Best Regards,
> > > > Myrle
> > > >
> > >
> >
>


Re: Finding beginner's issues in JIRA

2019-03-11 Thread Mua Rachmann
Hi Myrle,

I would strongly go for a "beginner issue" or "starter" any one so far as
it guides someone.

I had a pain till now finding a suitable task to work on.
Though i am going through the codebase and walking myself through it.

I think a  label of such will greatly be of help for newbies.

Thanks Mua.

On Mon, Mar 11, 2019 at 10:55 AM Myrle Krantz  wrote:

> So what do you all think of:  "starter" as a label.
>
> And further, what do you all think of making this label be focused at
> people who are new to our project, but not necessarily new to programming?
>
> Best Regards,
> Myrle
>
>
> On Sun, Mar 10, 2019 at 3:15 PM Awasum Yannick  wrote:
>
> > Myrle, I dont think we have such tags for beginner issues both Fineract
> 1.x
> > and Fineract CN.
> >
> > On Sun, Mar 10, 2019 at 2:13 PM yildirim.oguzha...@gmail.com <
> > yildirim.oguzha...@gmail.com> wrote:
> >
> > > I check jira for 2 months now but i don't see anything like that.
> Spring
> > > project has first-timers-only tag, something like that cloud work.
> > >
> > > On 2019/03/10 11:29:23, Myrle Krantz  wrote:
> > > > Hey all,
> > > >
> > > > Do we have a label for beginner's issues?  I could not find one.  I
> > > > searched Confluence, and I looked through a few issues in JIRA too.
> > > (But I
> > > > had to stop looking because right now there's maintenance for JIRA.)
> > > >
> > > > If we want our project to be welcoming to newcomers, we need to make
> it
> > > > easier to find beginner's issues.
> > > >
> > > > If we already have such a label, let me know, and I'll add a search
> for
> > > it
> > > > to one of our getting started pages in confluence.  If not, I'll
> invent
> > > one.
> > > >
> > > > Best Regards,
> > > > Myrle
> > > >
> > >
> >
>


Re: [Outreachy 2019] Interest in contributing to Mifos X

2019-03-11 Thread Awasum Yannick
Join the Mifos Mailing list as you are working with their Software Stack:
https://mifos.org/resources/community/communications/

I added their list on this mail.

On Mon, Mar 11, 2019 at 10:01 AM Kengne Lydiane 
wrote:

> Thanks Awasum for the reply
>
> I have already set up my environment with Mifos X and am going through the
> user manual on the mifos wiki page to understand how the web UI works
>
> Regards
> Lydiane
>
> On Sun, Mar 10, 2019 at 10:27 AM Awasum Yannick <
> awasum.yann...@skylabase.com> wrote:
>
> > Hello Lydiane,
> >
> > Aspiring GSoC and Outreachy Interns.
> >
> > Welcome to the Community.
> >
> > Here are a few steps you can use to get start in any Open Source
> project. I
> > wrote these so that i dont keep answering them in private:
> >
> > Step 0: Read About the Project Objectives, Goals and Setup your Dev and
> > Production Environments
> >
> > Read the Developer docs and the website of the project and understand the
> > problem which the Open Source project is solving, understand their
> > motivations, objectives and use cases. Set up your Dev environment. A dev
> > environment is a work space which programmers use to write code for
> > projects. This include and IDE, System software, browsers, dependencies
> > etc. Google these things and learn about them.
> >
> > Step 1: Learn how to use the Open Source Software as an End User
> >
> > You need to look at the user manual, follow it and learn how to use the
> > OOS. This is the best way to understand the problem which the software
> > solves. This way you will know how to test the system and how to identify
> > bugs. You will also be able to replicate bugs. If you cannot replay a bug
> > and see how the problem occurs, you cannot solve it easily. Learn how to
> > use the software like an End user please.
> >
> > Step 3: Run Unit test or Write Unit test for the project.
> >
> > If the project has unit test, run them, modify and run them to understand
> > how the system function. A unit test ensures that a feature works the
> right
> > way. This will be a chance to see how the system operates without really
> > running the whole system. Use break points, debuggers and print lines to
> > check the code and understand everything. If unit tests are lacking,
> please
> > write them and get help when you are blocked.
> >
> > Step 4: Pick Issues and Fix them
> >
> > Pick issues from the backlog or Issue or bug tracker and fix them.
> >
> > Step 5: Communicate with the Open Source Org and Community As often as
> you
> > need.
> >
> > When you have a problem or an idea, Google it first and try to solve or
> > refine it. When you have checked and you cannot solve the problem after a
> > few hours. Write to the communication channel of your org and get help.
> Ask
> > about new ideas you want to implement before going ahead to code them.
> >
> > Step 6: Write Documentation
> >
> > Write End User and Developer Documentation. Correct English in the docs
> and
> > correct grammar. Translate documentations if you know multiple human
> > languages.
> >
> > Mua and the other aspiring interns. Follow some of these principles and
> you
> > will make impact in this community. You can follow these steps in any
> > other.
> >
> > We value your contributions. Keep asking questions as you find more
> > problems.
> >
> > Thanks
> > Awasum Yannick
> >
> > On Sun, Mar 10, 2019 at 7:59 AM Kengne Lydiane <
> kengnelydiane...@gmail.com
> > >
> > wrote:
> >
> > > Hello everyone,
> > >
> > >  I am Massabe Kengne Lydiane, a beginner developer from Buea, Cameroon.
> > >  I am an opensource enthusiast and I see opensource as a platform to
> > > improve and polish my skills.
> > > Going through the Outreachy site, I came across the Mifos Initiative
> and
> > > am so interested in this organisation because of its vision in
> > eradicating
> > > poverty which is a common problem in the world especially in my
> > community.
> > > I am interested in contributing to Mifos X during and after this
> upcoming
> > > session of Outreachy 2019.
> > > I have started setting up my environment with Mifos X.
> > > I look forward to interacting with you all and contributing to this
> great
> > > community.
> > >
> > > Regards,
> > > Lydiane
> > >
> >
>


Re: Build Failed

2019-03-11 Thread Mua Rachmann
Sure i will do so.

Thanks very much.

On Mon, Mar 11, 2019 at 10:07 AM Awasum Yannick  wrote:

> Mua, Please ask that on the Mifos Mailing list.
>
> I advice you to subscribe to ALL communications channel given you are just
> starting. You don;t want to miss any update I presume?
>
>
> On Mon, Mar 11, 2019 at 10:04 AM Mua Rachmann 
> wrote:
>
> > I am little confused. I saw a gitter channel isn't that sufficient?
> >
> > Also i would love to know which is suitable so i can meet most of the
> devs
> > The mailing list or gitter channel
> >
> > Thnks
> >
> > On Mon, Mar 11, 2019 at 9:58 AM Awasum Yannick 
> wrote:
> >
> > > If you are dealing with the Community app then you should subscribe to
> > the
> > > Mifos Dev list as the Mifos Initiative is where the UI is been
> developed
> > > and Mifos X is different from Fineract.
> > >
> > > Ask your questions on their mailing list too.
> > >
> > > Mua, Thanks for your willingness to help document the Mac process of
> > > setting up the dev environment.
> > >
> > > Please, Signup for a confluence account:
> > > https://cwiki.apache.org/confluence/signup.action  and Jira account
> > here:
> > > https://issues.apache.org/jira/secure/Signup!default.jspa
> > >
> > > Then you can setup a wiki page to add your changes and get assigned and
> > > create issues as you see fit.
> > >
> > > Thanks
> > >
> > > On Mon, Mar 11, 2019 at 9:35 AM Mua Rachmann 
> > > wrote:
> > >
> > > > Hello Awasum,
> > > >
> > > > Thanks for the concern.. Mac has its stuff of doing things and yes i
> > > would
> > > > like to update the docs.
> > > >
> > > > What did you do to solve your problem?
> > > >
> > > >  > In my case, I deleted the gradle wrapper which still didn't work
> for
> > > me.
> > > > I later got myself a clean
> > > > copy of the fork and rebuild this time without importing the project
> on
> > > > intelliJ
> > > >
> > > > Will it be possible to update or create a documentation for Mac
> users?
> > > >
> > > > > Sure Awasum i would love to do so. I am currently installing the
> > > > community app version also i installed
> > > > my tomcat in this dir `/Library/Tomcat` since mac has its own way.
> > > Equally
> > > > i am using MAMP for my db
> > > > I could provide a way of setup for that if the community is ok with
> > that.
> > > > Also we know tha mac uses dmg
> > > > extensions for their packages which is a little different from Linux.
> > > >
> > > > I would love to know if this is ok.
> > > >
> > > > Thanks
> > > >
> > > > On Mon, Mar 11, 2019 at 9:19 AM Awasum Yannick 
> > > wrote:
> > > >
> > > > > Hi Mua,
> > > > >
> > > > > What did you do to solve your problem? Will it be possible to
> update
> > or
> > > > > create a documentation for Mac users?
> > > > > This will help other contributors who have felt your pain.
> > > > >
> > > > > Thanks
> > > > > Awasum
> > > > >
> > > > > On Mon, Mar 11, 2019 at 9:15 AM Mua Rachmann <
> muarachm...@gmail.com>
> > > > > wrote:
> > > > >
> > > > > > Hi Santosh,
> > > > > >
> > > > > > I am on Mac OS and i solved my issue thanks for the concern.
> > Actually
> > > > it
> > > > > > was an editor stuff :)
> > > > > >
> > > > > > Cheers
> > > > > >
> > > > > > On Mon, Mar 11, 2019 at 7:31 AM Santosh Math <
> > > > > > sant...@confluxtechnologies.com> wrote:
> > > > > >
> > > > > > > Hi Mua,
> > > > > > > Did you go through following link?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> https://mifosforge.jira.com/wiki/spaces/docs/pages/53215236/Mifos+X+Installation+on+Windows
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > On Sun, Mar 10, 2019 at 9:08 AM mua rachmann <
> > > muarachm...@gmail.com>
> > > > > > > wrote:
> > > > > > >
> > > > > > > > Hello, I am newbie in to the org and fineract project. I have
> > > > > installed
> > > > > > > > tomcat, mysql-server and every other stuff cloned too. On
> > running
> > > > the
> > > > > > RAT
> > > > > > > > ./gradlew rat i get build fail and here is the error. Any
> help
> > > > would
> > > > > be
> > > > > > > > appreciated thanks
> > > > > > > >
> > > > > > > > FAILURE: Build failed with an exception.
> > > > > > > >
> > > > > > > > * Where:
> > > > > > > > Script
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> '/Users/rachmann/Documents/open_source/fineract/fineract/fineract-provider/dependencies.gradle'
> > > > > > > > line: 30
> > > > > > > >
> > > > > > > > * What went wrong:
> > > > > > > > A problem occurred evaluating script.
> > > > > > > > > Could not find method providedCompile() for arguments [] on
> > > > object
> > > > > of
> > > > > > > > type
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
> > > > > > > >
> > > > > > > > * Try:
> > > > > > > > Run with --stacktrace option to get the stack trace. Run with
> > > > --info
> > > > > or
> > > > > > > > --debug option to 

Re: Build Failed

2019-03-11 Thread Awasum Yannick
Mua, Please ask that on the Mifos Mailing list.

I advice you to subscribe to ALL communications channel given you are just
starting. You don;t want to miss any update I presume?


On Mon, Mar 11, 2019 at 10:04 AM Mua Rachmann  wrote:

> I am little confused. I saw a gitter channel isn't that sufficient?
>
> Also i would love to know which is suitable so i can meet most of the devs
> The mailing list or gitter channel
>
> Thnks
>
> On Mon, Mar 11, 2019 at 9:58 AM Awasum Yannick  wrote:
>
> > If you are dealing with the Community app then you should subscribe to
> the
> > Mifos Dev list as the Mifos Initiative is where the UI is been developed
> > and Mifos X is different from Fineract.
> >
> > Ask your questions on their mailing list too.
> >
> > Mua, Thanks for your willingness to help document the Mac process of
> > setting up the dev environment.
> >
> > Please, Signup for a confluence account:
> > https://cwiki.apache.org/confluence/signup.action  and Jira account
> here:
> > https://issues.apache.org/jira/secure/Signup!default.jspa
> >
> > Then you can setup a wiki page to add your changes and get assigned and
> > create issues as you see fit.
> >
> > Thanks
> >
> > On Mon, Mar 11, 2019 at 9:35 AM Mua Rachmann 
> > wrote:
> >
> > > Hello Awasum,
> > >
> > > Thanks for the concern.. Mac has its stuff of doing things and yes i
> > would
> > > like to update the docs.
> > >
> > > What did you do to solve your problem?
> > >
> > >  > In my case, I deleted the gradle wrapper which still didn't work for
> > me.
> > > I later got myself a clean
> > > copy of the fork and rebuild this time without importing the project on
> > > intelliJ
> > >
> > > Will it be possible to update or create a documentation for Mac users?
> > >
> > > > Sure Awasum i would love to do so. I am currently installing the
> > > community app version also i installed
> > > my tomcat in this dir `/Library/Tomcat` since mac has its own way.
> > Equally
> > > i am using MAMP for my db
> > > I could provide a way of setup for that if the community is ok with
> that.
> > > Also we know tha mac uses dmg
> > > extensions for their packages which is a little different from Linux.
> > >
> > > I would love to know if this is ok.
> > >
> > > Thanks
> > >
> > > On Mon, Mar 11, 2019 at 9:19 AM Awasum Yannick 
> > wrote:
> > >
> > > > Hi Mua,
> > > >
> > > > What did you do to solve your problem? Will it be possible to update
> or
> > > > create a documentation for Mac users?
> > > > This will help other contributors who have felt your pain.
> > > >
> > > > Thanks
> > > > Awasum
> > > >
> > > > On Mon, Mar 11, 2019 at 9:15 AM Mua Rachmann 
> > > > wrote:
> > > >
> > > > > Hi Santosh,
> > > > >
> > > > > I am on Mac OS and i solved my issue thanks for the concern.
> Actually
> > > it
> > > > > was an editor stuff :)
> > > > >
> > > > > Cheers
> > > > >
> > > > > On Mon, Mar 11, 2019 at 7:31 AM Santosh Math <
> > > > > sant...@confluxtechnologies.com> wrote:
> > > > >
> > > > > > Hi Mua,
> > > > > > Did you go through following link?
> > > > > >
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> https://mifosforge.jira.com/wiki/spaces/docs/pages/53215236/Mifos+X+Installation+on+Windows
> > > > > >
> > > > > >
> > > > > >
> > > > > > On Sun, Mar 10, 2019 at 9:08 AM mua rachmann <
> > muarachm...@gmail.com>
> > > > > > wrote:
> > > > > >
> > > > > > > Hello, I am newbie in to the org and fineract project. I have
> > > > installed
> > > > > > > tomcat, mysql-server and every other stuff cloned too. On
> running
> > > the
> > > > > RAT
> > > > > > > ./gradlew rat i get build fail and here is the error. Any help
> > > would
> > > > be
> > > > > > > appreciated thanks
> > > > > > >
> > > > > > > FAILURE: Build failed with an exception.
> > > > > > >
> > > > > > > * Where:
> > > > > > > Script
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> '/Users/rachmann/Documents/open_source/fineract/fineract/fineract-provider/dependencies.gradle'
> > > > > > > line: 30
> > > > > > >
> > > > > > > * What went wrong:
> > > > > > > A problem occurred evaluating script.
> > > > > > > > Could not find method providedCompile() for arguments [] on
> > > object
> > > > of
> > > > > > > type
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
> > > > > > >
> > > > > > > * Try:
> > > > > > > Run with --stacktrace option to get the stack trace. Run with
> > > --info
> > > > or
> > > > > > > --debug option to get more log output. Run with --scan to get
> > full
> > > > > > > insights.
> > > > > > >
> > > > > > > * Get more help at https://help.gradle.org
> > > > > > >
> > > > > > > Deprecated Gradle features were used in this build, making it
> > > > > > incompatible
> > > > > > > with Gradle 5.0.
> > > > > > > Use '--warning-mode all' to show the individual deprecation
> > > warnings.
> > > > > > > See
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > 

Re: Build Failed

2019-03-11 Thread Mua Rachmann
I am little confused. I saw a gitter channel isn't that sufficient?

Also i would love to know which is suitable so i can meet most of the devs
The mailing list or gitter channel

Thnks

On Mon, Mar 11, 2019 at 9:58 AM Awasum Yannick  wrote:

> If you are dealing with the Community app then you should subscribe to the
> Mifos Dev list as the Mifos Initiative is where the UI is been developed
> and Mifos X is different from Fineract.
>
> Ask your questions on their mailing list too.
>
> Mua, Thanks for your willingness to help document the Mac process of
> setting up the dev environment.
>
> Please, Signup for a confluence account:
> https://cwiki.apache.org/confluence/signup.action  and Jira account here:
> https://issues.apache.org/jira/secure/Signup!default.jspa
>
> Then you can setup a wiki page to add your changes and get assigned and
> create issues as you see fit.
>
> Thanks
>
> On Mon, Mar 11, 2019 at 9:35 AM Mua Rachmann 
> wrote:
>
> > Hello Awasum,
> >
> > Thanks for the concern.. Mac has its stuff of doing things and yes i
> would
> > like to update the docs.
> >
> > What did you do to solve your problem?
> >
> >  > In my case, I deleted the gradle wrapper which still didn't work for
> me.
> > I later got myself a clean
> > copy of the fork and rebuild this time without importing the project on
> > intelliJ
> >
> > Will it be possible to update or create a documentation for Mac users?
> >
> > > Sure Awasum i would love to do so. I am currently installing the
> > community app version also i installed
> > my tomcat in this dir `/Library/Tomcat` since mac has its own way.
> Equally
> > i am using MAMP for my db
> > I could provide a way of setup for that if the community is ok with that.
> > Also we know tha mac uses dmg
> > extensions for their packages which is a little different from Linux.
> >
> > I would love to know if this is ok.
> >
> > Thanks
> >
> > On Mon, Mar 11, 2019 at 9:19 AM Awasum Yannick 
> wrote:
> >
> > > Hi Mua,
> > >
> > > What did you do to solve your problem? Will it be possible to update or
> > > create a documentation for Mac users?
> > > This will help other contributors who have felt your pain.
> > >
> > > Thanks
> > > Awasum
> > >
> > > On Mon, Mar 11, 2019 at 9:15 AM Mua Rachmann 
> > > wrote:
> > >
> > > > Hi Santosh,
> > > >
> > > > I am on Mac OS and i solved my issue thanks for the concern. Actually
> > it
> > > > was an editor stuff :)
> > > >
> > > > Cheers
> > > >
> > > > On Mon, Mar 11, 2019 at 7:31 AM Santosh Math <
> > > > sant...@confluxtechnologies.com> wrote:
> > > >
> > > > > Hi Mua,
> > > > > Did you go through following link?
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
> https://mifosforge.jira.com/wiki/spaces/docs/pages/53215236/Mifos+X+Installation+on+Windows
> > > > >
> > > > >
> > > > >
> > > > > On Sun, Mar 10, 2019 at 9:08 AM mua rachmann <
> muarachm...@gmail.com>
> > > > > wrote:
> > > > >
> > > > > > Hello, I am newbie in to the org and fineract project. I have
> > > installed
> > > > > > tomcat, mysql-server and every other stuff cloned too. On running
> > the
> > > > RAT
> > > > > > ./gradlew rat i get build fail and here is the error. Any help
> > would
> > > be
> > > > > > appreciated thanks
> > > > > >
> > > > > > FAILURE: Build failed with an exception.
> > > > > >
> > > > > > * Where:
> > > > > > Script
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> '/Users/rachmann/Documents/open_source/fineract/fineract/fineract-provider/dependencies.gradle'
> > > > > > line: 30
> > > > > >
> > > > > > * What went wrong:
> > > > > > A problem occurred evaluating script.
> > > > > > > Could not find method providedCompile() for arguments [] on
> > object
> > > of
> > > > > > type
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
> > > > > >
> > > > > > * Try:
> > > > > > Run with --stacktrace option to get the stack trace. Run with
> > --info
> > > or
> > > > > > --debug option to get more log output. Run with --scan to get
> full
> > > > > > insights.
> > > > > >
> > > > > > * Get more help at https://help.gradle.org
> > > > > >
> > > > > > Deprecated Gradle features were used in this build, making it
> > > > > incompatible
> > > > > > with Gradle 5.0.
> > > > > > Use '--warning-mode all' to show the individual deprecation
> > warnings.
> > > > > > See
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> https://docs.gradle.org/4.10/userguide/command_line_interface.html#sec:command_line_warnings
> > > > > >
> > > > > > BUILD FAILED in 2s
> > > > > >
> > > > >
> > > > >
> > > > > --
> > > > > Thanks & Regards
> > > > >
> > > > > Santosh Math
> > > > >
> > > > > *QA Engineer*
> > > > >
> > > > > *Conflux Technologies Pvt Ltd  >*
> > > > > | *Office*: +91-080-41208662 |
> > > > >
> > > > > *Address*: #304, 2nd Floor, 7th Main Road, HRBR Layout 1st Block,
> > > > > Bengaluru, Karnataka, 560043 INDIA
> > > > >
> > > >
> > >
> 

Re: [Outreachy 2019] Interest in contributing to Mifos X

2019-03-11 Thread Kengne Lydiane
Thanks Awasum for the reply

I have already set up my environment with Mifos X and am going through the
user manual on the mifos wiki page to understand how the web UI works

Regards
Lydiane

On Sun, Mar 10, 2019 at 10:27 AM Awasum Yannick <
awasum.yann...@skylabase.com> wrote:

> Hello Lydiane,
>
> Aspiring GSoC and Outreachy Interns.
>
> Welcome to the Community.
>
> Here are a few steps you can use to get start in any Open Source project. I
> wrote these so that i dont keep answering them in private:
>
> Step 0: Read About the Project Objectives, Goals and Setup your Dev and
> Production Environments
>
> Read the Developer docs and the website of the project and understand the
> problem which the Open Source project is solving, understand their
> motivations, objectives and use cases. Set up your Dev environment. A dev
> environment is a work space which programmers use to write code for
> projects. This include and IDE, System software, browsers, dependencies
> etc. Google these things and learn about them.
>
> Step 1: Learn how to use the Open Source Software as an End User
>
> You need to look at the user manual, follow it and learn how to use the
> OOS. This is the best way to understand the problem which the software
> solves. This way you will know how to test the system and how to identify
> bugs. You will also be able to replicate bugs. If you cannot replay a bug
> and see how the problem occurs, you cannot solve it easily. Learn how to
> use the software like an End user please.
>
> Step 3: Run Unit test or Write Unit test for the project.
>
> If the project has unit test, run them, modify and run them to understand
> how the system function. A unit test ensures that a feature works the right
> way. This will be a chance to see how the system operates without really
> running the whole system. Use break points, debuggers and print lines to
> check the code and understand everything. If unit tests are lacking, please
> write them and get help when you are blocked.
>
> Step 4: Pick Issues and Fix them
>
> Pick issues from the backlog or Issue or bug tracker and fix them.
>
> Step 5: Communicate with the Open Source Org and Community As often as you
> need.
>
> When you have a problem or an idea, Google it first and try to solve or
> refine it. When you have checked and you cannot solve the problem after a
> few hours. Write to the communication channel of your org and get help. Ask
> about new ideas you want to implement before going ahead to code them.
>
> Step 6: Write Documentation
>
> Write End User and Developer Documentation. Correct English in the docs and
> correct grammar. Translate documentations if you know multiple human
> languages.
>
> Mua and the other aspiring interns. Follow some of these principles and you
> will make impact in this community. You can follow these steps in any
> other.
>
> We value your contributions. Keep asking questions as you find more
> problems.
>
> Thanks
> Awasum Yannick
>
> On Sun, Mar 10, 2019 at 7:59 AM Kengne Lydiane  >
> wrote:
>
> > Hello everyone,
> >
> >  I am Massabe Kengne Lydiane, a beginner developer from Buea, Cameroon.
> >  I am an opensource enthusiast and I see opensource as a platform to
> > improve and polish my skills.
> > Going through the Outreachy site, I came across the Mifos Initiative  and
> > am so interested in this organisation because of its vision in
> eradicating
> > poverty which is a common problem in the world especially in my
> community.
> > I am interested in contributing to Mifos X during and after this upcoming
> > session of Outreachy 2019.
> > I have started setting up my environment with Mifos X.
> > I look forward to interacting with you all and contributing to this great
> > community.
> >
> > Regards,
> > Lydiane
> >
>


Re: Build Failed

2019-03-11 Thread Awasum Yannick
If you are dealing with the Community app then you should subscribe to the
Mifos Dev list as the Mifos Initiative is where the UI is been developed
and Mifos X is different from Fineract.

Ask your questions on their mailing list too.

Mua, Thanks for your willingness to help document the Mac process of
setting up the dev environment.

Please, Signup for a confluence account:
https://cwiki.apache.org/confluence/signup.action  and Jira account here:
https://issues.apache.org/jira/secure/Signup!default.jspa

Then you can setup a wiki page to add your changes and get assigned and
create issues as you see fit.

Thanks

On Mon, Mar 11, 2019 at 9:35 AM Mua Rachmann  wrote:

> Hello Awasum,
>
> Thanks for the concern.. Mac has its stuff of doing things and yes i would
> like to update the docs.
>
> What did you do to solve your problem?
>
>  > In my case, I deleted the gradle wrapper which still didn't work for me.
> I later got myself a clean
> copy of the fork and rebuild this time without importing the project on
> intelliJ
>
> Will it be possible to update or create a documentation for Mac users?
>
> > Sure Awasum i would love to do so. I am currently installing the
> community app version also i installed
> my tomcat in this dir `/Library/Tomcat` since mac has its own way. Equally
> i am using MAMP for my db
> I could provide a way of setup for that if the community is ok with that.
> Also we know tha mac uses dmg
> extensions for their packages which is a little different from Linux.
>
> I would love to know if this is ok.
>
> Thanks
>
> On Mon, Mar 11, 2019 at 9:19 AM Awasum Yannick  wrote:
>
> > Hi Mua,
> >
> > What did you do to solve your problem? Will it be possible to update or
> > create a documentation for Mac users?
> > This will help other contributors who have felt your pain.
> >
> > Thanks
> > Awasum
> >
> > On Mon, Mar 11, 2019 at 9:15 AM Mua Rachmann 
> > wrote:
> >
> > > Hi Santosh,
> > >
> > > I am on Mac OS and i solved my issue thanks for the concern. Actually
> it
> > > was an editor stuff :)
> > >
> > > Cheers
> > >
> > > On Mon, Mar 11, 2019 at 7:31 AM Santosh Math <
> > > sant...@confluxtechnologies.com> wrote:
> > >
> > > > Hi Mua,
> > > > Did you go through following link?
> > > >
> > > >
> > > >
> > >
> >
> https://mifosforge.jira.com/wiki/spaces/docs/pages/53215236/Mifos+X+Installation+on+Windows
> > > >
> > > >
> > > >
> > > > On Sun, Mar 10, 2019 at 9:08 AM mua rachmann 
> > > > wrote:
> > > >
> > > > > Hello, I am newbie in to the org and fineract project. I have
> > installed
> > > > > tomcat, mysql-server and every other stuff cloned too. On running
> the
> > > RAT
> > > > > ./gradlew rat i get build fail and here is the error. Any help
> would
> > be
> > > > > appreciated thanks
> > > > >
> > > > > FAILURE: Build failed with an exception.
> > > > >
> > > > > * Where:
> > > > > Script
> > > > >
> > > > >
> > > >
> > >
> >
> '/Users/rachmann/Documents/open_source/fineract/fineract/fineract-provider/dependencies.gradle'
> > > > > line: 30
> > > > >
> > > > > * What went wrong:
> > > > > A problem occurred evaluating script.
> > > > > > Could not find method providedCompile() for arguments [] on
> object
> > of
> > > > > type
> > > > >
> > > > >
> > > >
> > >
> >
> org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
> > > > >
> > > > > * Try:
> > > > > Run with --stacktrace option to get the stack trace. Run with
> --info
> > or
> > > > > --debug option to get more log output. Run with --scan to get full
> > > > > insights.
> > > > >
> > > > > * Get more help at https://help.gradle.org
> > > > >
> > > > > Deprecated Gradle features were used in this build, making it
> > > > incompatible
> > > > > with Gradle 5.0.
> > > > > Use '--warning-mode all' to show the individual deprecation
> warnings.
> > > > > See
> > > > >
> > > > >
> > > >
> > >
> >
> https://docs.gradle.org/4.10/userguide/command_line_interface.html#sec:command_line_warnings
> > > > >
> > > > > BUILD FAILED in 2s
> > > > >
> > > >
> > > >
> > > > --
> > > > Thanks & Regards
> > > >
> > > > Santosh Math
> > > >
> > > > *QA Engineer*
> > > >
> > > > *Conflux Technologies Pvt Ltd *
> > > > | *Office*: +91-080-41208662 |
> > > >
> > > > *Address*: #304, 2nd Floor, 7th Main Road, HRBR Layout 1st Block,
> > > > Bengaluru, Karnataka, 560043 INDIA
> > > >
> > >
> >
>


Re: Build Failed

2019-03-11 Thread Mua Rachmann
Hello Awasum,

Thanks for the concern.. Mac has its stuff of doing things and yes i would
like to update the docs.

What did you do to solve your problem?

 > In my case, I deleted the gradle wrapper which still didn't work for me.
I later got myself a clean
copy of the fork and rebuild this time without importing the project on
intelliJ

Will it be possible to update or create a documentation for Mac users?

> Sure Awasum i would love to do so. I am currently installing the
community app version also i installed
my tomcat in this dir `/Library/Tomcat` since mac has its own way. Equally
i am using MAMP for my db
I could provide a way of setup for that if the community is ok with that.
Also we know tha mac uses dmg
extensions for their packages which is a little different from Linux.

I would love to know if this is ok.

Thanks

On Mon, Mar 11, 2019 at 9:19 AM Awasum Yannick  wrote:

> Hi Mua,
>
> What did you do to solve your problem? Will it be possible to update or
> create a documentation for Mac users?
> This will help other contributors who have felt your pain.
>
> Thanks
> Awasum
>
> On Mon, Mar 11, 2019 at 9:15 AM Mua Rachmann 
> wrote:
>
> > Hi Santosh,
> >
> > I am on Mac OS and i solved my issue thanks for the concern. Actually it
> > was an editor stuff :)
> >
> > Cheers
> >
> > On Mon, Mar 11, 2019 at 7:31 AM Santosh Math <
> > sant...@confluxtechnologies.com> wrote:
> >
> > > Hi Mua,
> > > Did you go through following link?
> > >
> > >
> > >
> >
> https://mifosforge.jira.com/wiki/spaces/docs/pages/53215236/Mifos+X+Installation+on+Windows
> > >
> > >
> > >
> > > On Sun, Mar 10, 2019 at 9:08 AM mua rachmann 
> > > wrote:
> > >
> > > > Hello, I am newbie in to the org and fineract project. I have
> installed
> > > > tomcat, mysql-server and every other stuff cloned too. On running the
> > RAT
> > > > ./gradlew rat i get build fail and here is the error. Any help would
> be
> > > > appreciated thanks
> > > >
> > > > FAILURE: Build failed with an exception.
> > > >
> > > > * Where:
> > > > Script
> > > >
> > > >
> > >
> >
> '/Users/rachmann/Documents/open_source/fineract/fineract/fineract-provider/dependencies.gradle'
> > > > line: 30
> > > >
> > > > * What went wrong:
> > > > A problem occurred evaluating script.
> > > > > Could not find method providedCompile() for arguments [] on object
> of
> > > > type
> > > >
> > > >
> > >
> >
> org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
> > > >
> > > > * Try:
> > > > Run with --stacktrace option to get the stack trace. Run with --info
> or
> > > > --debug option to get more log output. Run with --scan to get full
> > > > insights.
> > > >
> > > > * Get more help at https://help.gradle.org
> > > >
> > > > Deprecated Gradle features were used in this build, making it
> > > incompatible
> > > > with Gradle 5.0.
> > > > Use '--warning-mode all' to show the individual deprecation warnings.
> > > > See
> > > >
> > > >
> > >
> >
> https://docs.gradle.org/4.10/userguide/command_line_interface.html#sec:command_line_warnings
> > > >
> > > > BUILD FAILED in 2s
> > > >
> > >
> > >
> > > --
> > > Thanks & Regards
> > >
> > > Santosh Math
> > >
> > > *QA Engineer*
> > >
> > > *Conflux Technologies Pvt Ltd *
> > > | *Office*: +91-080-41208662 |
> > >
> > > *Address*: #304, 2nd Floor, 7th Main Road, HRBR Layout 1st Block,
> > > Bengaluru, Karnataka, 560043 INDIA
> > >
> >
>


Re: Unable to build Fineract 1.x as documented in README

2019-03-11 Thread Mua Rachmann
Hi Larry,

sorry to hear you are still having issues with the build.
In my case, it was becasue i imported the project with IntelliJ and it
modified the gradle wrapper

- I recloned the repo to be sure i had the latest codes and this time
didn't import the project just yet
- I ran build rat which did successfully run
- I ran build clean war which generated my war file

After all these all is good. So i suggest you start from a clean fork and
also your internet connection
should be good. Sometimes it took a while for the build to download some
stuffs and i thought it
wasn't working.

Cheers Mua.


Re: Build Failed

2019-03-11 Thread Awasum Yannick
Hi Mua,

What did you do to solve your problem? Will it be possible to update or
create a documentation for Mac users?
This will help other contributors who have felt your pain.

Thanks
Awasum

On Mon, Mar 11, 2019 at 9:15 AM Mua Rachmann  wrote:

> Hi Santosh,
>
> I am on Mac OS and i solved my issue thanks for the concern. Actually it
> was an editor stuff :)
>
> Cheers
>
> On Mon, Mar 11, 2019 at 7:31 AM Santosh Math <
> sant...@confluxtechnologies.com> wrote:
>
> > Hi Mua,
> > Did you go through following link?
> >
> >
> >
> https://mifosforge.jira.com/wiki/spaces/docs/pages/53215236/Mifos+X+Installation+on+Windows
> >
> >
> >
> > On Sun, Mar 10, 2019 at 9:08 AM mua rachmann 
> > wrote:
> >
> > > Hello, I am newbie in to the org and fineract project. I have installed
> > > tomcat, mysql-server and every other stuff cloned too. On running the
> RAT
> > > ./gradlew rat i get build fail and here is the error. Any help would be
> > > appreciated thanks
> > >
> > > FAILURE: Build failed with an exception.
> > >
> > > * Where:
> > > Script
> > >
> > >
> >
> '/Users/rachmann/Documents/open_source/fineract/fineract/fineract-provider/dependencies.gradle'
> > > line: 30
> > >
> > > * What went wrong:
> > > A problem occurred evaluating script.
> > > > Could not find method providedCompile() for arguments [] on object of
> > > type
> > >
> > >
> >
> org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
> > >
> > > * Try:
> > > Run with --stacktrace option to get the stack trace. Run with --info or
> > > --debug option to get more log output. Run with --scan to get full
> > > insights.
> > >
> > > * Get more help at https://help.gradle.org
> > >
> > > Deprecated Gradle features were used in this build, making it
> > incompatible
> > > with Gradle 5.0.
> > > Use '--warning-mode all' to show the individual deprecation warnings.
> > > See
> > >
> > >
> >
> https://docs.gradle.org/4.10/userguide/command_line_interface.html#sec:command_line_warnings
> > >
> > > BUILD FAILED in 2s
> > >
> >
> >
> > --
> > Thanks & Regards
> >
> > Santosh Math
> >
> > *QA Engineer*
> >
> > *Conflux Technologies Pvt Ltd *
> > | *Office*: +91-080-41208662 |
> >
> > *Address*: #304, 2nd Floor, 7th Main Road, HRBR Layout 1st Block,
> > Bengaluru, Karnataka, 560043 INDIA
> >
>


Re: Unable to build Fineract 1.x as documented in README

2019-03-11 Thread Vishwas Babu
Hi Larry,

After the failure, the file at
file:/builds/ivange94/micro-finance-backend/build/reports/rat/rat-report.txt
logs details of the actual file(s) causing the issue (AFAIK rat-report.txt
file shouldn't be the issue). If these are generated files, you could make
a change to ensure that they are ignore from the build (similar to what
Yannick has done at https://github.com/apache/fineract/pull/545 ) and send
a pr for the same. This could be your started task on Fineract :)

Regards,
Vishwas



On Mon, Mar 11, 2019 at 12:31 AM ivange larry  wrote:

> Thanks all for the help so far but still not working.
>
> Deleting the file should fix that error.
>
>
> This is a generated file so deleting is of no effect as it'll be generated
> again in the next build.
>
> This happens when the the build tasks has been run before and later when
> > you run  the rat tasks. It begins failing.
>
>
> This happens wether or not I run the *rat* task first. When I just do
> *gradle
> build* it also runs the *rat *which fails with that error. When I do
> *gradle
> rat* before *gradle build* the same thing happens. I'm using containers and
> a new container is created on every build. So previous executions of gradle
> could hardly be the problem here.
>
> Larry, pull in this PR locally and see if that works:
> > https://github.com/apache/fineract/pull/545
>
>
> I applied this and it still didn't work. I even added this
>
> "**/reports/rat/rat-report.txt"
>
>
> to the ignored files but still same error.
>
> Is it safe to remove the *rat* task completely from the build?
>
> Thanks,
> Larry
>
> On Sun, Mar 10, 2019 at 11:54 PM Awasum Yannick  wrote:
>
> > I think the ./gradlew rat tasks is scanning the git ignore out folder
> which
> > contains some swagger files.
> >
> > This happens when the the build tasks has been run before and later when
> > you run  the rat tasks. It begins failing. Let me ignore the out folder
> in
> > rat config and send a quick PR, you pull and lets see if the thing works.
> >
> > Larry, pull in this PR locally and see if that works:
> > https://github.com/apache/fineract/pull/545
> >
> > Courage is right.
> >
> > On Sun, Mar 10, 2019 at 11:22 PM ivange larry 
> > wrote:
> >
> > > Hi Awasum and Mua,
> > >
> > > I could not downgrade my gradle in my local machine but I was able to
> get
> > > gradle 2.10 on our CI environment. I no longer get that error but the
> > build
> > > still fails with
> > >
> > > Download
> > > >
> > >
> >
> https://jcenter.bintray.com/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar
> > > > Download
> > > >
> > >
> >
> https://jcenter.bintray.com/commons-lang/commons-lang/2.6/commons-lang-2.6.jar
> > > > Download
> > > >
> > https://jcenter.bintray.com/commons-io/commons-io/2.2/commons-io-2.2.jar
> > > > Download
> > > >
> > >
> >
> https://jcenter.bintray.com/org/apache/commons/commons-compress/1.10/commons-compress-1.10.jar
> > > > Download
> > > >
> > >
> >
> https://jcenter.bintray.com/commons-cli/commons-cli/1.2/commons-cli-1.2.jar
> > > > :rat FAILED
> > > > FAILURE: Build failed with an exception.
> > > > * What went wrong:
> > > > Execution failed for task ':rat'.
> > > > > Found 1 files with unapproved/unknown licenses. See
> > > >
> > >
> >
> file:/builds/ivange94/micro-finance-backend/build/reports/rat/rat-report.txt
> > > > * Try:
> > > > Run with --stacktrace option to get the stack trace. Run with --info
> or
> > > > --debug option to get more log output.
> > > > BUILD FAILED
> > > > Total time: 52.562 secs
> > > > ERROR: Job failed: exit code 1
> > >
> > >
> > > This time it's complaining about unapproved licenses. How do I get that
> > > fixed?
> > >
> > > Thanks,
> > > Larry
> > >
> > > On Sun, Mar 10, 2019 at 10:35 AM Awasum Yannick 
> > wrote:
> > >
> > > > Larry, that makes sense.
> > > >
> > > > Here is a link to an previous mail where Vishwas was helping me solve
> > > > the problem:
> > > >
> > > >
> > >
> >
> https://lists.apache.org/thread.html/1f01897413545729420c66355d3211d625ebbd245a98407220783bfc@%3Cdev.fineract.apache.org%3E
> > > >
> > > > And here is something related to IntelliJ problem you face:
> > > >
> > > >
> > >
> >
> https://lists.apache.org/thread.html/f4cb9364504a13f71ea7654082274c7ff80c48b19ff76e8cadf3cc7f@%3Cdev.fineract.apache.org%3E
> > > >
> > > >
> > > > On Sun, Mar 10, 2019 at 10:23 AM ivange larry  >
> > > > wrote:
> > > >
> > > > > Unfortunately, I cannot downgrade gradle as I have a lot of other
> > > > projects
> > > > > depending on it.
> > > > >
> > > > > I have removed the InteliJ changes from the wrapper and tried
> > building
> > > > > again but now I'm getting the second error I mentioned in my
> initial
> > > > email.
> > > > >
> > > > > Below is my terminal output to the command ./gradlew rat
> > > > >
> > > > > Listening for transport dt_socket at address: 8005
> > > > > > Downloading
> > > > > https://services.gradle.org/distributions/gradle-2.10-bin.zip
> > > > > >
> > > > > >
> > > > >
> 

Re: Build Failed

2019-03-11 Thread Mua Rachmann
Hi Santosh,

I am on Mac OS and i solved my issue thanks for the concern. Actually it
was an editor stuff :)

Cheers

On Mon, Mar 11, 2019 at 7:31 AM Santosh Math <
sant...@confluxtechnologies.com> wrote:

> Hi Mua,
> Did you go through following link?
>
>
> https://mifosforge.jira.com/wiki/spaces/docs/pages/53215236/Mifos+X+Installation+on+Windows
>
>
>
> On Sun, Mar 10, 2019 at 9:08 AM mua rachmann 
> wrote:
>
> > Hello, I am newbie in to the org and fineract project. I have installed
> > tomcat, mysql-server and every other stuff cloned too. On running the RAT
> > ./gradlew rat i get build fail and here is the error. Any help would be
> > appreciated thanks
> >
> > FAILURE: Build failed with an exception.
> >
> > * Where:
> > Script
> >
> >
> '/Users/rachmann/Documents/open_source/fineract/fineract/fineract-provider/dependencies.gradle'
> > line: 30
> >
> > * What went wrong:
> > A problem occurred evaluating script.
> > > Could not find method providedCompile() for arguments [] on object of
> > type
> >
> >
> org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
> >
> > * Try:
> > Run with --stacktrace option to get the stack trace. Run with --info or
> > --debug option to get more log output. Run with --scan to get full
> > insights.
> >
> > * Get more help at https://help.gradle.org
> >
> > Deprecated Gradle features were used in this build, making it
> incompatible
> > with Gradle 5.0.
> > Use '--warning-mode all' to show the individual deprecation warnings.
> > See
> >
> >
> https://docs.gradle.org/4.10/userguide/command_line_interface.html#sec:command_line_warnings
> >
> > BUILD FAILED in 2s
> >
>
>
> --
> Thanks & Regards
>
> Santosh Math
>
> *QA Engineer*
>
> *Conflux Technologies Pvt Ltd *
> | *Office*: +91-080-41208662 |
>
> *Address*: #304, 2nd Floor, 7th Main Road, HRBR Layout 1st Block,
> Bengaluru, Karnataka, 560043 INDIA
>


Re: Aftermath of Fineract CN GSoC 2018 Projects

2019-03-11 Thread Pembe Miriam
Hello Isaac,

I worked on the project, New Web UI for Microfinance. This project entailed
implementing a front-end UI for Fineract CN that is similar to the UI that
was found in the current Gen 2 Mifos X web app as well as the original Gen
1 web app with support for microfinance institutions with group and center
based operations.

The UI to setup a center on Fineract-CN has been done with the various
fields and design gotten from the current Mifos X.

The problem I faced was that the back-end for Center was not available.

I used a Json Server to test the workflow of setting up a center on
Fineract-CN but this could not help me in simulating transactions carried
out by centers.

This project needs that the endpoints for center based transactions
(back-end) be made available so that it could be used to carry out center
based transactions on the web UI (front-end).

Thanks,
Pembe Miriam


On Sat, Mar 9, 2019 at 2:58 PM Ruphine Kengne 
wrote:

> Hello Isaac,
>
> I worked on the Group Loan management System under Fineract CN.
>
> I produced the Web UI on fims web app to consumed all the available
> endpoints and
> I also implemented and consumed the endpoints which were not there.
>
> I faced some issues so I created 2 issues (FINCN-100
>  and FINCN-101
> ) on the jira page
> regarding the project and I resolved them.
> I send 2 PRs for the issues,but they were not merged due to an error in
> the teller service when I ran the unit test.
> I sent an email to the mailing list regarding the error. Mark replied but
> that did not help.
> I got stuck there and I later created another issue (FINCN-102
> ).
>
> Here, is the chat on the mailing-list regarding these issues
>
> https://lists.apache.org/thread.html/5f87e12811c15a94c6d37577c1bafeed6f0e1f973e70912cb09897c8@%3Cdev.fineract.apache.org%3E
>
> Further work for the project requires implementing Group saving and Group
> loan functionalities on the back-end
> and other functionalities like transferring members between groups and
> adding members to an existing group.
> Also producing a UI for those functionalities on the existing fims-web-app
>
> Regards
> Ruphine Kengne
>
> On Fri, 8 Mar 2019 at 23:02, Isaac Kamga  wrote:
>
>> Hello GSoC 2018 students,
>>
>> Please could you provide a succinct summary of your project's status.
>>
>> Any form of information containing
>> 1. Work done
>> 2. Challenges/Errors faced, and
>> 3. Possible Further work/Improvements, will be helpful for the community
>> to know how to help make progress.
>>
>> At Your Service,
>> Isaac Kamga.
>>
>>


Re: Unable to build Fineract 1.x as documented in README

2019-03-11 Thread ivange larry
Thanks all for the help so far but still not working.

Deleting the file should fix that error.


This is a generated file so deleting is of no effect as it'll be generated
again in the next build.

This happens when the the build tasks has been run before and later when
> you run  the rat tasks. It begins failing.


This happens wether or not I run the *rat* task first. When I just do *gradle
build* it also runs the *rat *which fails with that error. When I do *gradle
rat* before *gradle build* the same thing happens. I'm using containers and
a new container is created on every build. So previous executions of gradle
could hardly be the problem here.

Larry, pull in this PR locally and see if that works:
> https://github.com/apache/fineract/pull/545


I applied this and it still didn't work. I even added this

"**/reports/rat/rat-report.txt"


to the ignored files but still same error.

Is it safe to remove the *rat* task completely from the build?

Thanks,
Larry

On Sun, Mar 10, 2019 at 11:54 PM Awasum Yannick  wrote:

> I think the ./gradlew rat tasks is scanning the git ignore out folder which
> contains some swagger files.
>
> This happens when the the build tasks has been run before and later when
> you run  the rat tasks. It begins failing. Let me ignore the out folder in
> rat config and send a quick PR, you pull and lets see if the thing works.
>
> Larry, pull in this PR locally and see if that works:
> https://github.com/apache/fineract/pull/545
>
> Courage is right.
>
> On Sun, Mar 10, 2019 at 11:22 PM ivange larry 
> wrote:
>
> > Hi Awasum and Mua,
> >
> > I could not downgrade my gradle in my local machine but I was able to get
> > gradle 2.10 on our CI environment. I no longer get that error but the
> build
> > still fails with
> >
> > Download
> > >
> >
> https://jcenter.bintray.com/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar
> > > Download
> > >
> >
> https://jcenter.bintray.com/commons-lang/commons-lang/2.6/commons-lang-2.6.jar
> > > Download
> > >
> https://jcenter.bintray.com/commons-io/commons-io/2.2/commons-io-2.2.jar
> > > Download
> > >
> >
> https://jcenter.bintray.com/org/apache/commons/commons-compress/1.10/commons-compress-1.10.jar
> > > Download
> > >
> >
> https://jcenter.bintray.com/commons-cli/commons-cli/1.2/commons-cli-1.2.jar
> > > :rat FAILED
> > > FAILURE: Build failed with an exception.
> > > * What went wrong:
> > > Execution failed for task ':rat'.
> > > > Found 1 files with unapproved/unknown licenses. See
> > >
> >
> file:/builds/ivange94/micro-finance-backend/build/reports/rat/rat-report.txt
> > > * Try:
> > > Run with --stacktrace option to get the stack trace. Run with --info or
> > > --debug option to get more log output.
> > > BUILD FAILED
> > > Total time: 52.562 secs
> > > ERROR: Job failed: exit code 1
> >
> >
> > This time it's complaining about unapproved licenses. How do I get that
> > fixed?
> >
> > Thanks,
> > Larry
> >
> > On Sun, Mar 10, 2019 at 10:35 AM Awasum Yannick 
> wrote:
> >
> > > Larry, that makes sense.
> > >
> > > Here is a link to an previous mail where Vishwas was helping me solve
> > > the problem:
> > >
> > >
> >
> https://lists.apache.org/thread.html/1f01897413545729420c66355d3211d625ebbd245a98407220783bfc@%3Cdev.fineract.apache.org%3E
> > >
> > > And here is something related to IntelliJ problem you face:
> > >
> > >
> >
> https://lists.apache.org/thread.html/f4cb9364504a13f71ea7654082274c7ff80c48b19ff76e8cadf3cc7f@%3Cdev.fineract.apache.org%3E
> > >
> > >
> > > On Sun, Mar 10, 2019 at 10:23 AM ivange larry 
> > > wrote:
> > >
> > > > Unfortunately, I cannot downgrade gradle as I have a lot of other
> > > projects
> > > > depending on it.
> > > >
> > > > I have removed the InteliJ changes from the wrapper and tried
> building
> > > > again but now I'm getting the second error I mentioned in my initial
> > > email.
> > > >
> > > > Below is my terminal output to the command ./gradlew rat
> > > >
> > > > Listening for transport dt_socket at address: 8005
> > > > > Downloading
> > > > https://services.gradle.org/distributions/gradle-2.10-bin.zip
> > > > >
> > > > >
> > > >
> > >
> >
> 

Re: Introduction & GSoC interested Student

2019-03-11 Thread Santosh Math
Hi Mua,

Welcome to our community. We are happy to see you here.

I would urge you to take a look at these links.

This is to get you started as a contributor with Fineract CN: Link


   1. Getting Started Doc
   <
https://cwiki.apache.org/confluence/display/FINERACT/Getting+Started+Docs?src=contextnavpagetreemode
>
   2. Take Your First Steps
   <
https://cwiki.apache.org/confluence/display/FINERACT/Take+Your+First+Steps>
   3. Key Design Principles
   <
https://cwiki.apache.org/confluence/display/FINERACT/Key+Design+Principles>
   4. Coding Conventions
   

These are the repositories: Apache Fineract


This is a link to how to import the microservices into Intellij - Link
<
https://cwiki.apache.org/confluence/display/FINERACT/Importing+Fineract+CN+Microservices+Into+IntelliJ
>


On Sun, Mar 10, 2019 at 9:14 AM mua rachmann  wrote:

> Hello everyone, I am Mua Laurent a computer engineering student from the
> faculty of Engineering and Technology at the University of Buea Cameroon. I
> am an open source enthusiast and joined OS last year. I am loving the
> experience and would love to contribute in this organization under the
> Fineract project. I have read over through it an i love its objectives for
> the unbanked and underbanked. This is a common problem faced back here in
> my community and i would love to help contribute to this project as i see
> it as a means to improve my skill set and learn from experienced devs
> around the globe. I have a good understanding of java, python , html5, css3
> , javascript and go programming language. I look forward in working with
> you guys to better my experience in open source. Also i am interested in
> this years GSoC. I have already gone through the docs and guides on how to
> install. I have just one question i am on a mac OS will the ubuntu
> installation guide follow through?. Thanks
>


-- 
Thanks & Regards

Santosh Math

*QA Engineer*

*Conflux Technologies Pvt Ltd *
| *Office*: +91-080-41208662 |

*Address*: #304, 2nd Floor, 7th Main Road, HRBR Layout 1st Block,
Bengaluru, Karnataka, 560043 INDIA


Re: Build Failed

2019-03-11 Thread Santosh Math
Hi Mua,
Did you go through following link?

https://mifosforge.jira.com/wiki/spaces/docs/pages/53215236/Mifos+X+Installation+on+Windows



On Sun, Mar 10, 2019 at 9:08 AM mua rachmann  wrote:

> Hello, I am newbie in to the org and fineract project. I have installed
> tomcat, mysql-server and every other stuff cloned too. On running the RAT
> ./gradlew rat i get build fail and here is the error. Any help would be
> appreciated thanks
>
> FAILURE: Build failed with an exception.
>
> * Where:
> Script
>
> '/Users/rachmann/Documents/open_source/fineract/fineract/fineract-provider/dependencies.gradle'
> line: 30
>
> * What went wrong:
> A problem occurred evaluating script.
> > Could not find method providedCompile() for arguments [] on object of
> type
>
> org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
>
> * Try:
> Run with --stacktrace option to get the stack trace. Run with --info or
> --debug option to get more log output. Run with --scan to get full
> insights.
>
> * Get more help at https://help.gradle.org
>
> Deprecated Gradle features were used in this build, making it incompatible
> with Gradle 5.0.
> Use '--warning-mode all' to show the individual deprecation warnings.
> See
>
> https://docs.gradle.org/4.10/userguide/command_line_interface.html#sec:command_line_warnings
>
> BUILD FAILED in 2s
>


-- 
Thanks & Regards

Santosh Math

*QA Engineer*

*Conflux Technologies Pvt Ltd *
| *Office*: +91-080-41208662 |

*Address*: #304, 2nd Floor, 7th Main Road, HRBR Layout 1st Block,
Bengaluru, Karnataka, 560043 INDIA