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
- Host: GitHub
- URL: https://github.com/isaacmaddox/pennywise
- Owner: isaacmaddox
- Created: 2024-11-20T17:05:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-09T14:46:34.000Z (over 1 year ago)
- Last Synced: 2025-03-27T04:16:55.714Z (over 1 year ago)
- Topics: authentication, dashboard, finance, jwt, nextjs, nodejs, react
- Language: TypeScript
- Homepage: https://pennywise.isaacmaddox.dev
- Size: 421 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pennywise

## 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
```