2023-10-16 21:58:50 +02:00
|
|
|
# RAR-Index
|
|
|
|
It's some project for my school which is supposed to index _rar_-archives and make them searchable over a very ugly web frontend.
|
|
|
|
|
|
|
|
## Downloading
|
|
|
|
```bash
|
|
|
|
git clone https://git.marcelsite.com/marcel/rar-index
|
|
|
|
cd rar-index
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
### Baremetal
|
|
|
|
Install the dependencies:
|
|
|
|
```bash
|
|
|
|
pip install -r requirements.txt
|
|
|
|
```
|
2023-10-19 19:39:54 +02:00
|
|
|
Edit the configuration:
|
2023-10-16 21:58:50 +02:00
|
|
|
```bash
|
|
|
|
cd flask
|
2023-10-19 19:39:54 +02:00
|
|
|
cp example.config.py config.py
|
|
|
|
$EDITOR config.py
|
|
|
|
```
|
|
|
|
Start the server:
|
|
|
|
```bash
|
2023-10-16 21:58:50 +02:00
|
|
|
python app.py
|
|
|
|
```
|
|
|
|
|
|
|
|
### Docker
|
|
|
|
TBA
|
|
|
|
|
|
|
|
## Contributing
|
|
|
|
I don't recommend wasting your time on this project. It is only created to get a (hopefully) good grade in school.
|