
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
justic
Advanced tools
Let me explain what was inside my head as I start this:
There are a bunch of templates that defined some basic views, like a list-view, a card-view or some grid-view. And the content files will be in another folder. Every file contains some data and define the template for the render. The structure of the files will be the structure of the output html files.
And there it is. Still under development!
.. code-block:: bash
pip install justic
.. code-block:: bash
python -m justic example python -m http.server --directory example/build
The content are simple python files with a specific structure. There are three important sections:
JUSTIC (JUSTIC) For settings for the Justic class. This will be inherited to the sub directory.
META (META) Parameters for the current instance, like the template name or build file.
OTHERS All other capitalized variable will be passed to the template.
All Parameters:
.. code-block:: python
JUSTIC = { 'remove_build_prefix': 'content', 'default_template': 'index.html', }
META = { 'target': 'content', 'targets': ['content'], 'static': 'static', 'template': 'foo.html', }
TITLE = 'Foo' SITEURL = ''
Virtual environment windows::
python -m venv venv venv\Scripts\activate
Virtual environment linux::
python3 -m venv venv source venv/bin/activate
Setup project::
python -m pip install --upgrade pip wheel setuptools coverage pytest flake8 pylint tox python -m pip install -e .
Run single test with code coverage::
coverage run --source=justic -m pytest coverage report -m
Run test for multiple python versions::
tox -p auto
Check syntax::
python -m flake8 justic python -m pylint --rcfile=setup.cfg justic
Create package Jenkins will do it::
git tag -a 0.1.7 -m "version 0.1.7" git push --follow-tags
No Jenkins?::
python -m pip install --upgrade twine python setup.py sdist bdist_wheel python -m twine check dist/* python -m twine upload dist/*
FAQs
Just a static site generator
We found that justic demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.