Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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!