🟢 Stable | Docker image for docmachine-utils
Go to file
dependabot[bot] a02c03e960
build(deps): bump pillow from 9.0.0 to 9.0.1
Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.0.0 to 9.0.1.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](https://github.com/python-pillow/Pillow/compare/9.0.0...9.0.1)

---
updated-dependencies:
- dependency-name: pillow
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-12 01:09:45 +00:00
.github/workflows ci: fix command in test job 2021-12-21 17:26:22 +01:00
.makefiles@d5627404e1 Update .makefiles 2021-07-23 16:16:58 +02:00
.marp style: Fix design of slides 2021-11-30 13:33:29 +01:00
docker fix(Dockerfile): follow redirections in curl 2022-01-30 17:15:32 +01:00
docs style: improve filesystem organization 2021-06-27 23:45:49 +02:00
examples Rename .directory files to .empty to prevent conflicts with some file managers 2020-04-19 12:27:59 +02:00
exercises Rename .directory files to .empty to prevent conflicts with some file managers 2020-04-19 12:27:59 +02:00
images Add sample images for .dot and .circo 2021-07-23 16:52:57 +02:00
mindmaps Rename .directory files to .empty to prevent conflicts with some file managers 2020-04-19 12:27:59 +02:00
scripts fix: broken entrypoint script & config name 2022-01-28 19:43:53 +01:00
slides Add support for mdpp slides 2021-07-23 16:15:53 +02:00
.dockerignore Add directories for examples & exercises 2020-04-19 12:20:53 +02:00
.gitignore chore: ignore marp theme.css & sort ignored files 2021-06-27 23:45:49 +02:00
.gitmodules Add dependency to makefiles-forever 2021-07-23 15:51:26 +02:00
docker-compose.yml Update docker scripts 2021-11-23 23:46:50 +01:00
Makefile fix: missing context in makefile recipe for docker-build 2022-01-30 17:14:02 +01:00
mkdocs-source.yml feat: handle mkdocs patching 2022-01-28 18:41:34 +01:00
package-lock.json Merge pull request #22 from glenux/dependabot/npm_and_yarn/markdown-it-12.3.2 2022-01-30 16:06:57 +01:00
package.json fix: update Marp because of chrome bug[F 2021-11-30 21:42:42 +01:00
Pipfile feat: add support for PDF generation from docs 2021-12-21 17:42:47 +01:00
Pipfile.lock build(deps): bump pillow from 9.0.0 to 9.0.1 2022-03-12 01:09:45 +00:00
Procfile fix: Make sure watch works for tocupdate target 2021-06-27 23:45:49 +02:00
README.md Update README.md 2022-01-25 16:06:04 +01:00

Teaching-Boilerplate

Prerequisites :

Make sure you have python and node installed

git remote rename origin boilerplate
git remote add origin git@...
git checkout -b upstream/boilerplate/master --track

Install python packages

pip install -U pipenv
pipenv install

Install node packages

npm install

Usage

First steps

Clean this repository

Change the remote

Watch mode

This mode allows you the result on-the-fly as you makea changes in the content.

To use watch mode, type:

make watch

To use watch mode for slides only type:

make watch-slides

To use watch mode for docs only type:

make watch-docs

Build mode

This mode builds final content for delivery (website, PDF files)

To use build mode:

make build