Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calvinhp/cookiecutter-revealjs
Quick Cookiecutter template to get started with a Reveal.js Presentation
https://github.com/calvinhp/cookiecutter-revealjs
Last synced: about 2 months ago
JSON representation
Quick Cookiecutter template to get started with a Reveal.js Presentation
- Host: GitHub
- URL: https://github.com/calvinhp/cookiecutter-revealjs
- Owner: calvinhp
- License: other
- Created: 2019-06-18T14:35:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-11T22:06:55.000Z (about 1 year ago)
- Last Synced: 2023-10-12T13:04:18.685Z (about 1 year ago)
- Language: SCSS
- Size: 22.5 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Get started quickly with a Reveal.js Presentation
## Usage
Make sure you have the `git-lfs` extension installed as this repo depends on it when Cookiecutter uses it.
Install [Cookiecutter](https://cookiecutter.readthedocs.io/en/latest/index.html) via `pipx`.
```console
$ pipx install cookiecutter
```Now run it against this repo:
```console
$ cookiecutter https://github.com/calvinhp/cookiecutter-revealjs
```You will be prompted for some information about your presentation and it will create a new folder filled with a Reveal.js project ready for you to build.
Check out your presentation:
```console
$ cd my_awesome_presentation
$ ls
```Once you create your own presentation, you can create a git repo and push it there:
```console
$ git init
$ git add .
$ git commit -m "first awesome commit"
$ git remote add origin [email protected]:calvinhp/my_awesome_presentation.git
$ git push -u origin main
```Enjoy!