https://github.com/selfhostedpro/wrkbox
Workbox is an electron.js application to create and interact with a custom docker container with all the tools you need in your day-to-day work.
https://github.com/selfhostedpro/wrkbox
Last synced: about 1 year ago
JSON representation
Workbox is an electron.js application to create and interact with a custom docker container with all the tools you need in your day-to-day work.
- Host: GitHub
- URL: https://github.com/selfhostedpro/wrkbox
- Owner: SelfhostedPro
- Created: 2022-02-21T04:29:23.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-04T16:50:15.000Z (over 4 years ago)
- Last Synced: 2025-05-07T08:26:15.195Z (over 1 year ago)
- Language: TypeScript
- Size: 287 KB
- Stars: 5
- Watchers: 2
- 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-typescript-tailwindcss
# with yarn
$ yarn create nextron-app my-app --example with-typescript-tailwindcss
# with pnpx
$ pnpx create-nextron-app my-app --example with-typescript-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`)
```