GithubHelp home page GithubHelp logo

paukiatwee / budgetapp Goto Github PK

View Code? Open in Web Editor NEW
315.0 315.0 74.0 6.92 MB

Open source personal budgeting application

Home Page: https://www.budgetapp.io

License: Apache License 2.0

Shell 0.05% JavaScript 19.19% Java 41.78% CSS 21.57% HTML 17.35% Dockerfile 0.05%
budgeting personal

budgetapp's Introduction

Hi there ๐Ÿ‘‹

budgetapp's People

Contributors

danstahr avatar navneetkarnani avatar paukiatwee avatar porter avatar wernerb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

budgetapp's Issues

Requires maven 3

This is probably obvious to someone in the java world. But would have been nice if the README can specify that this requires maven 3 to build.

Ubuntu provides maven and maven2 packages. I installed maven2 thinking it's the higher version but that was not the case. You have to use the maven package which gives you maven 3.

Budgetapp dont Save

When restart the Run.sh file or reboot Server
All input data. and the created account are gone.

what am I doing wrong

Export data

Hello. Is there is a way to export all data from the application then import it's back? Didn't find a way to backup db, so, would be great to download data somehow. Thanks.

Need instructions for production deployment

I would like to do a private (but production) deployment of the app. Can you add instructions, to Readme.md, on steps needed to do a production deployment, maybe on AWS, Digital Ocean, Google App Engine, or any place that you are comfortable with ?

Blank Page

Greetings,

I tried out the demo link and built from source. Both methods are showing a blank page; however, view->source within the browser is showing a bunch of html markup. Not sure what is going on.

Dependencies/Requirements?

Why is the README so vague? What is the requirements/dependencies for this project?

I have
JAVA

OpenJDK Runtime Environment (build 11.0.12+7-post-Raspbian-2deb10u1)
OpenJDK Server VM (build 11.0.12+7-post-Raspbian-2deb10u1, mixed mode)

MVN

Maven home: /opt/apache-maven-3.8.3
Java version: 11.0.12, vendor: Raspbian, runtime: /usr/lib/jvm/java-11-openjdk-armhf
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "5.10.60-v7l+", arch: "arm", family: "unix"

But when I run ./run.sh I get the following error

[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  42.657 s
[INFO] Finished at: 2021-10-09T16:09:47-07:00
[INFO] ------------------------------------------------------------------------
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.fasterxml.jackson.module.afterburner.util.MyClassLoader (file:/home/pi/budgetapp/target/budgetapp.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int)
WARNING: Please consider reporting this to the maintainers of com.fasterxml.jackson.module.afterburner.util.MyClassLoader
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
INFO  [2021-10-09 23:09:53,170] io.dropwizard.server.DefaultServerFactory: Registering jersey handler with root path prefix: /
INFO  [2021-10-09 23:09:53,179] io.dropwizard.server.DefaultServerFactory: Registering admin handler with root path prefix: /
java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException
        at org.hibernate.boot.spi.XmlMappingBinderAccess.<init>(XmlMappingBinderAccess.java:43)
        at org.hibernate.boot.MetadataSources.<init>(MetadataSources.java:87)
        at org.hibernate.cfg.Configuration.<init>(Configuration.java:123)
        at org.hibernate.cfg.Configuration.<init>(Configuration.java:118)
        at io.dropwizard.hibernate.SessionFactoryFactory.buildSessionFactory(SessionFactoryFactory.java:72)
        at io.dropwizard.hibernate.SessionFactoryFactory.build(SessionFactoryFactory.java:49)
        at io.dropwizard.hibernate.SessionFactoryFactory.build(SessionFactoryFactory.java:39)
        at io.dropwizard.hibernate.HibernateBundle.run(HibernateBundle.java:67)
        at io.dropwizard.hibernate.HibernateBundle.run(HibernateBundle.java:19)
        at io.dropwizard.setup.Bootstrap.run(Bootstrap.java:200)
        at io.dropwizard.cli.EnvironmentCommand.run(EnvironmentCommand.java:42)
        at io.dropwizard.cli.ConfiguredCommand.run(ConfiguredCommand.java:87)
        at io.dropwizard.cli.Cli.run(Cli.java:78)
        at io.dropwizard.Application.run(Application.java:93)
        at io.budgetapp.BudgetApplication.main(BudgetApplication.java:46)
Caused by: java.lang.ClassNotFoundException: javax.xml.bind.JAXBException
        at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581)
        at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
        at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)

Import CSV Feature

Hi,

I like this app and the benefits it gives a loose-with-money college student such as myself. One of the biggest problems I have with it that the the data entry is tedious. A feature to import a CSV file would really solve this issue and make using this app a much more low-maintenance experience.

Here's what I envision

An Import tab on the left side bar.
The import page accepts a CSV file, parses it on the front end, and displays it as a table.
In the table head are select tags where the user can assign each column of the CSV as either

  • Amount
  • Remark
  • Transaction Date

After the user confirms what column of the CSV maps to what value, the values are displayed in a table.
The items in the table are editable, and the user can specify which budget each transaction falls under.

Once all is in order, the user can submit all these transactions to the server.

Some possible issues

  • The transaction might have a month in which no budgets exist
  • (My) banks report transaction amounts as positive for gain and negative for loss. This could be an issue when the user categorizes a negative value as a purchase, as the app interprets positive values (in expenditures) as money spent.
  • The browser might not be able to handle parsing and displaying very large CSV files
  • If the CSV is of all transactions, importing a CSV now and in a month would cause duplicate transactions for those older than one month.

I've already begun work on this feature, is this a PR you would consider accepting?

Thank you for your time,
Porter

Installation on Linux

Hi. I can't seem to install this app on a shared hosting in Hostgator. Something is a miss. How should I or are there steps into installing this to a hosting service like hostgator?

Unable to access jarfile target/budgetapp.jar

Hi There,

Fresh server, fresh copy of BudgetApp from git, confirmed Java8 and Maven installed and that $JAVA_HOME set.
Invoke run.sh and receive error "Unable to access jarfile target/budgetapp.jar" - Confirmed that file doesnt exist.
Any ideas?

Cheers,
Dave

Error with mvn package

The following is get when running mvn package:

~/budgetapp# mvn package -e
[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building budgetapp-webapp 1.2.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.3:resources (default-resources) @ budgetapp-webapp ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 59 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ budgetapp-webapp ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 73 source files to /root/budgetapp/target/classes
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 8.991s
[INFO] Finished at: Sun Feb 28 10:54:06 EST 2016
[INFO] Final Memory: 12M/28M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.3:compile (default-compile) on project budgetapp-webapp: Fatal error compiling: invalid target release: 1.8 -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.3:compile (default-compile) on project budgetapp-webapp: Fatal error compiling
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:217)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.MojoExecutionException: Fatal error compiling
at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:836)
at org.apache.maven.plugin.compiler.CompilerMojo.execute(CompilerMojo.java:129)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
... 19 more
Caused by: org.codehaus.plexus.compiler.CompilerException: invalid target release: 1.8
at org.codehaus.plexus.compiler.javac.JavaxToolsCompiler.compileInProcess(JavaxToolsCompiler.java:172)
at org.codehaus.plexus.compiler.javac.JavacCompiler.performCompile(JavacCompiler.java:169)
at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:825)
... 22 more
Caused by: java.lang.IllegalArgumentException: invalid target release: 1.8
at com.sun.tools.javac.main.RecognizedOptions$GrumpyHelper.error(RecognizedOptions.java:88)
at com.sun.tools.javac.main.RecognizedOptions$10.process(RecognizedOptions.java:359)
at com.sun.tools.javac.api.JavacTool.processOptions(JavacTool.java:242)
at com.sun.tools.javac.api.JavacTool.getTask(JavacTool.java:199)
at com.sun.tools.javac.api.JavacTool.getTask(JavacTool.java:68)
at org.codehaus.plexus.compiler.javac.JavaxToolsCompiler.compileInProcess(JavaxToolsCompiler.java:123)
... 24 more
[ERROR]
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.