mirror of
https://git.sr.ht/~coasteen/webui
synced 2025-11-04 11:37:34 +01:00
41 lines
800 B
Markdown
41 lines
800 B
Markdown
# WebUI - A Simple File Management Tool
|
|
|
|
WebUI is a (not very) lightweight and easy-to-use web application for managing files on your server.
|
|
|
|
## Screenshot
|
|
|
|

|
|

|
|
|
|
## Getting Started
|
|
|
|
### dependencies
|
|
|
|
* [Node.js](https://nodejs.org/) installed on your system.
|
|
|
|
### Installation
|
|
|
|
1. Clone:
|
|
```bash
|
|
git clone https://codeberg.org/coast/webui.git
|
|
```
|
|
2. Navigate to the directory:
|
|
```bash
|
|
cd webui
|
|
```
|
|
3. Install dependencies:
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
### Usage
|
|
|
|
1. Start the server:
|
|
```bash
|
|
node server.js
|
|
```
|
|
2. Open your browser of choice and go to `http://<SERVER_IP>:3000` or `http://localhost:3000`.
|
|
|
|
## License
|
|
|
|
This project is licensed under the [GPL v2.0 License](LICENSE).
|