Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

rgrzegorczyk/home_budget

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HOME BUDGET

 

Track your expenses and plan your home budget!

 

Why this app?


For many years my wife and I have been using MS Excel to write down all the expenses we made during the month.

But for me, it was always hard to maintain, backup, or do some analytical grouping, etc.

That's why I decided to write an app and move it to APEX


Here you can check a working DEMO of the application published at apex.oracle.com

LINK IN PROGRESS

The app is published without any guarantees and is still in development.

However I'v been using it at "production" in my home for few months :)

Installation

  • I assume that you have Oracle Database minimum 19.X, and APEX minimum 20.2
  • Below examples are dedicated for using with Oracle Cloud - probably you will have to tune it a little if you use sth else.
  1. Using privileged user e.g ADMIN, run:

create user HOME_BUDGET identified by [PASSWORD];

  grant connect to HOME_BUDGET;
  grant create view to HOME_BUDGET;
  grant create job to HOME_BUDGET;
  grant create table to HOME_BUDGET;
  grant create type to HOME_BUDGET;
  grant create sequence to HOME_BUDGET;
  grant create trigger to HOME_BUDGET;
  grant create procedure to HOME_BUDGET;
  grant create any context  to HOME_BUDGET;`

QUOTAS // it's "DATA" when you use Oracle Cloud Free ATP

ALTER USER "HOME_BUDGET" QUOTA UNLIMITED ON "DATA";

  1. Log into your APEX internal and: Create a workspace for your HOME_BUDGET user.

  2. Log into the newly created HOME_BUDGET workspace. Install APEX application (When installing choose "Install supporting objects").

Choose f200.sql file from the newest ./build folder.

Do not install "install_script.sql" - it's just for archive purposes!

Release notes

v1_0 25.10.2021

  • installation file f200.sql will automatically install content of install_script.sql

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages