Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paologuimalan/neonpos
Point-of-Sales kiosk enabled shell for Ubuntu env. with NextJS.
https://github.com/paologuimalan/neonpos
Last synced: 27 days ago
JSON representation
Point-of-Sales kiosk enabled shell for Ubuntu env. with NextJS.
- Host: GitHub
- URL: https://github.com/paologuimalan/neonpos
- Owner: PaoloGuimalan
- Created: 2024-04-18T11:54:01.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-07-02T07:03:07.000Z (6 months ago)
- Last Synced: 2024-08-29T05:44:14.821Z (4 months ago)
- Language: TypeScript
- Size: 618 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Usage
### Create an App
```
# with npx
$ npx create-nextron-app my-app --example with-tailwindcss# with yarn
$ yarn create nextron-app my-app --example with-tailwindcss# with pnpm
$ pnpm dlx create-nextron-app my-app --example with-tailwindcss
```### Install Dependencies
```
$ cd my-app# using yarn or npm
$ yarn (or `npm install`)# using pnpm
$ pnpm install --shamefully-hoist
```### Use it
```
# development mode
$ yarn dev (or `npm run dev` or `pnpm run dev`)# production build
$ yarn build (or `npm run build` or `pnpm run build`)
```