This is the source code for https://l2safety.info.
- Clone the repo (or fork the repo to your account)
- Install dependencies:
bundle install - Create a feature branch off of the
mainbranch - Start the local server:
bundle exec jekyll serve - Go to http://localhost:4400/ to view changes
To build the site use bundle exec jekyll build.
Resources:
To run the script in _script:
- Create virtual environment:
python3 -m venv _scripts/venv/ - Start the local server:
. _scripts/venv/bin/activate && pip install -r _scripts/requirements.txt && python _scripts/collect_data.py - Or run each command individually:
- Start python virtual environment:
. _scripts/venv/bin/activate - Install dependencies:
pip install -r _scripts/requirements.txt - Run the script:
python _scripts/collect_data.py
- Start python virtual environment:
- Close virtual environment:
deactivate