~eightytwo/idspispopd

f204aa7838e4705d1a8545dabe1e437cc2879ad2 — eightytwo 4 years ago 222dd13
Update readme with installation of requirements
1 files changed, 12 insertions(+), 2 deletions(-)

M README.md
M README.md => README.md +12 -2
@@ 41,10 41,20 @@ The following is the structure of my website and the builder code has constant v

## Building the website

With the static files, content, and templates in place, building the website is as simple as running:
First ensure the requirements are installed. Use a Python 'virtual environment'
if desired - the example below uses the `venv` module of Python 3.

```sh
$ python3 build.py
$ python3 -m venv env
$ . env/bin/activate
(env) $ pip install -r requirements.txt
```

Then, with the static files, content, and templates in place, building the
website is as simple as running:

```sh
(env) $ python3 build.py
```

A `build` directory will be created with the following structure.