An open API service indexing awesome lists of open source software.

https://github.com/abdelilahou/bludgeon-typescript

stock management app built with electron + vue 3 + vite + tsx support + prisma + express all in typescript
https://github.com/abdelilahou/bludgeon-typescript

electron express i18n nodejs prisma tsx typescript vue-i18n vue3

Last synced: 2 months ago
JSON representation

stock management app built with electron + vue 3 + vite + tsx support + prisma + express all in typescript

Awesome Lists containing this project

README

        

# stock-managment-electron

## Project Setup

### server

```sh
npm install
```

### prisma setup

#### run migration with prisma migration

```sh
npx prisma migrate dev --name init
```

#### run the electron app

```sh
npm run start
```

### client

```sh
cd client
```

```sh
npm install
```

### Compile and Hot-Reload for Development

```sh
npm run dev
```

### Type-Check, Compile and Minify for Production

```sh
npm run build
```

### Run Unit Tests with [Vitest](https://vitest.dev/)

```sh
npm run test:unit
```

### Lint with [ESLint](https://eslint.org/)

```sh
npm run lint
```