An open API service indexing awesome lists of open source software.

https://github.com/isaacmaddox/pennywise

The official repository for the Pennywise Finance app
https://github.com/isaacmaddox/pennywise

authentication dashboard finance jwt nextjs nodejs react

Last synced: 3 months ago
JSON representation

The official repository for the Pennywise Finance app

Awesome Lists containing this project

README

          

# Pennywise

![Pennywise Logo](/public/logo_with_lettermark.jpg)

## Get set up

```bash
npm i
npx prisma generate
npx next dev
```

## Build a Production version and run it

```bash
npx next build
npx next start
```

## Migrate changes to the Prisma schema

```bash
npx prisma migrate dev --name
```

## Git commands

### Pull latest

```bash
git checkout main
git pull
```

### Commit your changes

```bash
git add -A # Only if you created or deleted files
git commit -a -m ''
git push
```

### After creating a new branch in the Project

```bash
git fetch origin
git checkout 1-some-branch # Type the number of your branch and press tab
```