Skip to content

Commit

Permalink
Merge pull request #5 from 201flaviosilva-labs/2-svelte-app
Browse files Browse the repository at this point in the history
2 svelte app
  • Loading branch information
201flaviosilva committed May 8, 2023
2 parents cf8df16 + cecfaed commit 69d26bf
Show file tree
Hide file tree
Showing 29 changed files with 746 additions and 32,272 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/Deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Github Pages Deploy

on:
push:
branches:
- main
paths:
- "react-app/**"

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./react-app

strategy:
matrix:
node-version: [16.x]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
run: npm i

- name: Build
run: npm run build

- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: ./react-app/build
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
_ignore
package-lock.json

# Logs
logs
Expand Down
30 changes: 21 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,25 @@ Inspired by this Breakout game recreation project in various JS Engines: https:/

This is the MVP base for all App implementations:

- Add an individual task (name, amount, date)
- Search bar to filter the task with the current input;
- Save/load state to/from localstorage;
- Individually:
- Remove
- Edit:
- Name;
- Amount;
- Date;
- List all transactions
- Show a basic dashboard balance:
- Total (Incomes+Expenses);
- Total Incomes;
- Total Expenses;
- Add an individual items (name, amount, date);
- Search bar to filter the transaction with the current input;
- Save/load state;
- Individually remove;
- Clear all items (with a confirmation modal);

## Nice To Have

This it's some features that would be amazing to have in the app:

- Search bar to filter the items with the current input;
- Individually edit:
- Name;
- Amount;
- Date;
- Edit a Item;
- Categories/labels;

0 comments on commit 69d26bf

Please sign in to comment.