├── frontend
├── src
│ ├── vite-env.d.ts
│ ├── App.vue
│ ├── assets
│ │ ├── ts
│ │ │ ├── index.ts
│ │ │ ├── client.ts
│ │ │ ├── API.ts
│ │ │ ├── localstorage.ts
│ │ │ └── auth.ts
│ │ ├── css
│ │ │ ├── index.css
│ │ │ └── base
│ │ │ │ ├── _custom.css
│ │ │ │ ├── media.css
│ │ │ │ ├── html.css
│ │ │ │ └── root.css
│ │ └── vue.svg
│ ├── components
│ │ ├── global
│ │ │ ├── Container.vue
│ │ │ ├── ApiValidationFailedErrors.vue
│ │ │ ├── InputComponent.vue
│ │ │ ├── DebugGrid.vue
│ │ │ ├── Header.vue
│ │ │ └── LoadingSpinner.vue
│ │ └── pages
│ │ │ ├── Home
│ │ │ ├── UserDetails.vue
│ │ │ └── TransactionsTable.vue
│ │ │ └── Authenticate
│ │ │ ├── LoginForm.vue
│ │ │ └── SignupForm.vue
│ ├── main.ts
│ ├── layout
│ │ └── MainLayout.vue
│ ├── pages
│ │ ├── Authenticate.vue
│ │ └── Home.vue
│ ├── router.ts
│ └── style.css
├── .vscode
│ └── extensions.json
├── postcss.config.cjs
├── w.code-workspace
├── tsconfig.node.json
├── vite.config.ts
├── README.md
├── .gitignore
├── index.html
├── tsconfig.json
├── package.json
├── tailwind.config.cjs
├── public
│ └── vite.svg
└── backups
│ └── Authenticate_previous.txt
├── backend
├── .gitignore
├── modules
│ ├── auth_module
│ │ ├── body.gen.go
│ │ └── controllers.go
│ ├── transaction_module
│ │ ├── body.gen.go
│ │ ├── controllers.go
│ │ ├── post.go
│ │ └── get.go
│ └── user_module
│ │ ├── custm_response.go
│ │ ├── delete.go
│ │ ├── body.gen.go
│ │ ├── controllers.go
│ │ ├── post.go
│ │ └── get.go
├── lib
│ ├── request
│ │ └── main.go
│ ├── auth
│ │ ├── jwt_validate.go
│ │ ├── jwt_convert.go
│ │ └── jwt_create.go
│ ├── utils
│ │ └── utils.go
│ ├── validate
│ │ └── validate.go
│ ├── paginate
│ │ └── main.go
│ ├── response
│ │ └── response.go
│ └── middleware
│ │ └── middleware.go
├── public
│ ├── placeholder.ts
│ └── gomarvin.gen.ts
├── db
│ ├── sql
│ │ ├── functions.sql
│ │ ├── balance.sql
│ │ ├── transaction.sql
│ │ └── user.sql
│ ├── sqlc
│ │ ├── db.go
│ │ ├── models.go
│ │ ├── balance.sql.go
│ │ ├── transaction.sql.go
│ │ └── user.sql.go
│ ├── migrations
│ │ ├── 20230119152024_balances_table.sql
│ │ ├── 20230117124309_transactions_table.sql
│ │ └── 20230116143036_init.sql
│ ├── sqlc.yaml
│ └── schema.sql
├── settings
│ ├── env.go
│ ├── jwt-time.go
│ ├── database
│ │ └── database.go
│ └── settings.go
├── main.go
├── .env
├── app
│ ├── router.go
│ └── server.go
├── go.mod
├── Dockerfile
├── README.md
├── backups
│ └── balance_test_queries.txt
└── go.sum
├── w.code-workspace
├── .gitignore
├── README.md
├── seeder.ts
└── gomarvin.json
/frontend/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///