printer-manager-fe/README.md

38 lines
912 B
Markdown
Raw Normal View History

2023-11-02 11:24:00 +00:00
# printer manager front-end
2023-11-01 21:20:34 +00:00
2023-11-02 11:24:00 +00:00
@todo: update readme with all features, and how to use it
2023-11-01 21:20:34 +00:00
2023-11-02 11:24:00 +00:00
Everything you need to build the Printer Manager front-end, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
2023-11-01 21:20:34 +00:00
2023-11-02 11:24:00 +00:00
The printer manager front-end is a web application that allows users to do printer actions through one webbrowser.
Features:
- It loads the printers from the printer manager backend
- List available printers
- View temperatures
- View printer state
- View printer queue
- View printer files
- Upload files to the printer
- Delete files from the printer
- Start jobs
- Pause jobs
- Clear queue
2023-11-01 21:20:34 +00:00
## Developing
2023-11-02 11:24:00 +00:00
Once you've installed the project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
2023-11-01 21:20:34 +00:00
```bash
npm run dev
```
## Building
To create a production version of your app:
```bash
npm run build
2023-11-02 11:24:00 +00:00
```