Adding variable substitution for volume name

This commit is contained in:
Apoclyps
2019-07-24 22:09:45 +01:00
parent bd605e5832
commit 55641f1fdd
3 changed files with 15 additions and 6 deletions

View File

@@ -27,6 +27,18 @@ The CBWebReader is a Django project and follows the standard conventions for a D
git clone https://github.com/ajurna/cbwebreader
```
Configure the environment using the `.env` file or setting each variable within your environment:
```bash
cp .env.example .env
```
Alternatively, set the path to your `COMIC_BOOK_VOLUME` like so:
```bash
export COMIC_BOOK_VOLUME=some_path_to_comics_directory
```
Build and run the project using docker-compose:
```bash
@@ -34,6 +46,7 @@ docker-compose build
docker-compose up
```
## Running Tests
To run the entire test suite for CBWebReader, execute the following command: