An open API service indexing awesome lists of open source software.

https://github.com/ryu22e/my-slide-template

社内LT資料
https://github.com/ryu22e/my-slide-template

slides

Last synced: about 1 year ago
JSON representation

社内LT資料

Awesome Lists containing this project

README

          

# 自作のスライドテンプレートの話

## Requirements
* Git
* Python 3.10 or higher
* Your favorite editor

## How to Build
```bash
$ git clone {repository url}
$ cd {repository path}
$ python -m venv .venv
$ source .venv/bin/activate
(.venv)$ pip install -r requirements_dev.txt
(.venv)$ playwright install --with-deps chromium # Run only once initially
(.venv)$ vim source/index.md # Replace vim with your favorite editor
(.venv)$ make revealjs # Build to build/revealjs/
```

If you want to automatically rebuild when changes are made, you can use `sphinx-autobuild`:

```bash
(.venv)$ sphinx-autobuild source build/revealjs -b revealjs # Serve at http://localhost:8000
```