40 lines
830 B
Markdown
40 lines
830 B
Markdown
# Proxmox Helper Scripts
|
|
|
|
Unofficial re-design of the [Proxmox helper script website](https://tteck.github.io/Proxmox/)
|
|
|
|
feel free to fork the project. or post feedback in the [Discussion tab](https://github.com/BramSuurdje/proxmox-helper-scripts/discussions). your feedback is always welcomed since we're all learning.
|
|
|
|
## Todo
|
|
|
|
- [ ] fix issue with accordions not expanding when searching
|
|
- [ ] add icons after items for better readability
|
|
- [ ] when no item is selected. display populair scripts etc.
|
|
|
|
## How to contribute
|
|
|
|
First, install the dependencies:
|
|
|
|
```bash
|
|
npm install
|
|
# or
|
|
yarn install
|
|
# or
|
|
pnpm install
|
|
# or
|
|
bun install
|
|
```
|
|
|
|
Then, run the development server:
|
|
|
|
```bash
|
|
npm run dev
|
|
# or
|
|
yarn dev
|
|
# or
|
|
pnpm dev
|
|
# or
|
|
bun dev
|
|
```
|
|
|
|
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|