Formazione all'uso consapevole del PC/smartphone online ed offline.
Find a file
2018-01-18 20:15:34 -05:00
files Add files utils 2018-01-18 20:01:02 -05:00
static Update deps 2017-11-20 17:46:32 -05:00
templates Add new slide btn 2018-01-18 20:15:34 -05:00
.dockerignore Updated reveal.js 2017-03-01 19:07:23 -05:00
.gitattributes Make it Linguist friendly 2016-03-05 12:26:01 +02:00
.gitignore Update deps 2017-11-20 17:46:32 -05:00
.travis.yml Travis 2016-03-06 21:04:58 +02:00
app_test.go Test for redirect 2018-01-18 20:15:19 -05:00
Dockerfile Dockerfile for heroku 2017-05-13 11:24:55 -04:00
initial-slides.md Initial static files 2016-02-29 20:31:32 +02:00
LICENSE LICENSE 2016-03-03 15:09:12 +02:00
main.go Changed session logic 2018-01-18 20:01:16 -05:00
Makefile Make file versioning 2017-11-20 17:48:14 -05:00
package.json Update deps 2017-11-20 17:46:32 -05:00
Readme.md Fix lang 2017-11-12 17:57:06 -05:00
yarn.lock Update deps 2017-11-20 17:46:32 -05:00

Hacker Slides

MIT licensed Build Status

This repo is a reworked version of Sandstorm Hacker Slides which features easy set up run outside of Sandstorm and without vagrant-spk. Likewise you can publish and edit your previous markdown slides which is not supported in the original version.

Features:

  • Reach ui editor
  • Markdown markup
  • Live reload
  • Color schemes
  • Pdf print
  • Demo version
  • Tiny 10 Mb docker image
  • Optional Basic auth
Edit mode Published
1st 1st
2nd 2nd

Run from docker image

docker run -it -p 8080:8080 -v $(pwd)/slides:/app/slides msoedov/hacker-slides

Build locally

To build and run it locally

go get
go run main.go

[GIN-debug] Listening and serving HTTP on :8080

And then you can just open http://127.0.0.1:8080 and it's ready to use with sample slides.

Run with docker

docker run -it -p 8080:8080 -v $(pwd)/slides:/app/slides msoedov/hacker-slides

Protect slides with password

Basic auth (disabled by default)

USER=bob PASSWORD=password1 go run main.go
[GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.
 - using env:	export GIN_MODE=release
 - using code:	gin.SetMode(gin.ReleaseMode)

WARN[0000] Auth mode enabled
WARN[0000] Visit http://bob:password1@0.0.0.0:8080
docker run -it -p 8080:8080 -e USER=bob -e PASSWORD=password1 -v $(pwd)/slides:/app/slides msoedov/hacker-slides

Getting Help

For feature requests and bug reports submit an issue to the GitHub issue tracker