26 lines
513 B
Markdown
26 lines
513 B
Markdown
|
|
# Repo
|
||
|
|
|
||
|
|
```sh
|
||
|
|
git clone https://tseed.work/tseed/gc_integration_templater.git --config "http.proxy=asblcinfpxy01:3128"
|
||
|
|
```
|
||
|
|
|
||
|
|
# Python venv
|
||
|
|
|
||
|
|
- Host with Python version 3.6+
|
||
|
|
|
||
|
|
```sh
|
||
|
|
python3 -m venv $HOME/gc_integration_templater/venv
|
||
|
|
source $HOME/gc_integration_templater/venv/bin/activate
|
||
|
|
python --version
|
||
|
|
which python
|
||
|
|
pip install --proxy http://asblcinfpxy01:3128 --upgrade pip
|
||
|
|
pip install --proxy http://asblcinfpxy01:3128 pyyaml jinja2
|
||
|
|
deactivate
|
||
|
|
```
|
||
|
|
|
||
|
|
# Run
|
||
|
|
|
||
|
|
```sh
|
||
|
|
./render_engine.py
|
||
|
|
python3 render_engine.py
|
||
|
|
```
|