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資料
- Host: GitHub
- URL: https://github.com/ryu22e/my-slide-template
- Owner: ryu22e
- License: cc-by-4.0
- Created: 2024-12-02T13:00:03.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-01T11:12:10.000Z (over 1 year ago)
- Last Synced: 2025-03-01T11:31:11.562Z (over 1 year ago)
- Topics: slides
- Language: Python
- Homepage: https://my-slide-template.ryu22e.dev/
- Size: 77 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```