https://github.com/fido1hn/pos-accounting
Point of Sale application built with Vue, Nuxt, Nuxt UI, & Supabase
https://github.com/fido1hn/pos-accounting
nuxt nuxtui shadcn-vue supabase vue
Last synced: 3 months ago
JSON representation
Point of Sale application built with Vue, Nuxt, Nuxt UI, & Supabase
- Host: GitHub
- URL: https://github.com/fido1hn/pos-accounting
- Owner: fido1hn
- Created: 2024-05-31T17:20:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T04:00:14.000Z (over 1 year ago)
- Last Synced: 2025-10-26T04:33:34.692Z (7 months ago)
- Topics: nuxt, nuxtui, shadcn-vue, supabase, vue
- Language: Vue
- Homepage: https://finance-tracking-app-sooty.vercel.app/
- Size: 2.4 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# POS Accounting, Nuxt, Nuxt UI, Supabase
POSA: POS Accounting allows POS agents keep track of daily transactions on the go, get finiancial reports and chat with A.I about their finances.
## Technologies include
Vue/Nuxt, Tailwind CSS, Supabase, Nuxt UI, Shadcn-Vue,
## Backend Setup
- Setup up a Supabase project
- Create a new project on Supabase
- Configure environment variables
- Copy the .env.example file to .env and fill in all the variables
- Setup authentication on Supabase
- Configure authentication providers in your Supabase project settings, Email & Google.
- Run database migrations
- DB Migrations will be provided soon
- Set up AI integrations
- Coming soon
## Dev Setup
Make sure to install the dependencies:
```bash
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.