banana/README.mdown

40 lines
706 B
Plaintext
Raw Normal View History

2021-12-05 19:29:43 +00:00
# Elder Scrolls Online Commadline Addon Manager
Elder Scrolls Online addon manager and a Tamriel Trade Centre price table updater
2021-12-05 20:09:32 +00:00
[MIT License](LICENSE)
2021-12-05 19:29:43 +00:00
# Dependencies
2021-12-05 20:09:32 +00:00
```
python3-pip
```
# Linux Installation
# Windows Installation
2021-12-05 19:29:43 +00:00
# Usage
2021-12-05 20:09:32 +00:00
# Linux Development
Use docker to test the python components.
For docker installation run the following commands on [Ubuntu 20.04](https://ubuntu.com/download/):
```bash
sudo apt-get update && sudo apt-get install -y \
docker-compose \
docker.io \
&& apt-get clean
sudo usermod -aG docker $USER
```
Build and run the dev environment by entering the following commands:
```bash
cd ./banana/
docker-compose build
docker-compose run banana
```