dataEconomy/Readme.md

75 lines
2.5 KiB
Markdown
Raw Normal View History

2016-03-03 10:58:58 +01:00
## Hacker Slides
2017-05-13 17:40:30 +02:00
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/msoedov/hacker-slides/blob/master/LICENSE)
2016-03-06 20:10:33 +01:00
[![Build Status](https://travis-ci.org/msoedov/hacker-slides.svg?branch=master)](https://travis-ci.org/msoedov/hacker-slides)
2017-05-13 17:40:30 +02:00
[![](https://images.microbadger.com/badges/image/msoedov/hacker-slides:latest.svg)](https://microbadger.com/images/msoedov/hacker-slides "Hacker slides image")
Add CodeTriage badge to msoedov/hacker-slides Adds a badge showing the number of people helping this repo on CodeTriage. [![Open Source Helpers](https://www.codetriage.com/msoedov/hacker-slides/badges/users.svg)](https://www.codetriage.com/msoedov/hacker-slides) ## What is CodeTriage? CodeTriage is an Open Source app that is designed to make contributing to Open Source projects easier. It works by sending subscribers a few open issues in their inbox. If subscribers get busy, there is an algorithm that backs off issue load so they do not get overwhelmed [Read more about the CodeTriage project](https://www.codetriage.com/what). ## Why am I getting this PR? Your project was picked by the human, @schneems. They selected it from the projects submitted to https://www.codetriage.com and hand edited the PR. How did your project get added to [CodeTriage](https://www.codetriage.com/what)? Roughly 10 months ago, [msoedov](https://github.com/msoedov) added this project to CodeTriage in order to start contributing. ## What does adding a badge accomplish? Adding a badge invites people to help contribute to your project. It also lets developers know that others are invested in the longterm success and maintainability of the project. You can see an example of a CodeTriage badge on these popular OSS READMEs: - [![](https://www.codetriage.com/rails/rails/badges/users.svg)](https://www.codetriage.com/rails/rails) https://github.com/rails/rails - [![](https://www.codetriage.com/crystal-lang/crystal/badges/users.svg)](https://www.codetriage.com/crystal-lang/crystal) https://github.com/crystal-lang/crystal ## Have a question or comment? While I am a bot, this PR was manually reviewed and monitored by a human - @schneems. My job is writing commit messages and handling PR logistics. If you have any questions, you can reply back to this PR and they will be answered by @schneems. If you do not want a badge right now, no worries, close the PR, you will not hear from me again. Thanks for making your project Open Source! Any feedback is greatly appreciated.
2018-02-19 17:11:12 +01:00
[![Open Source Helpers](https://www.codetriage.com/msoedov/hacker-slides/badges/users.svg)](https://www.codetriage.com/msoedov/hacker-slides)
2016-03-06 20:10:33 +01:00
2016-03-05 11:15:16 +01:00
This repo is a reworked version of [Sandstorm Hacker Slides](https://github.com/jacksingleton/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.
2017-05-13 17:40:30 +02:00
#### Features:
- Reach ui editor
- Markdown markup
- Live reload
- Color schemes
- Pdf print
- [Demo version](https://murmuring-sierra-54081.herokuapp.com)
- Tiny 10 Mb docker image
2017-11-12 23:48:48 +01:00
- Optional Basic auth
2017-05-13 17:40:30 +02:00
2017-05-13 17:23:12 +02:00
2016-03-05 11:15:16 +01:00
| Edit mode | Published |
2017-05-13 17:40:30 +02:00
| --- | --- | --- |
| ![1st](https://sc-cdn.scaleengine.net/i/520e2f4a8ca107b0263936507120027e.png) | ![1st](https://sc-cdn.scaleengine.net/i/7ae0d31a40b0b9e7acc3f131754874cf.png) |
|![2nd](https://sc-cdn.scaleengine.net/i/5acba66070e24f76bc7f20224adc611e.png) | ![2nd](https://sc-cdn.scaleengine.net/i/fee3e1374cb13b1d8c292becb7f514ae.png) |
2016-03-05 11:15:16 +01:00
2016-03-03 11:04:42 +01:00
2017-05-13 17:40:30 +02:00
Run from docker image
-----
```shell
docker run -it -p 8080:8080 -v $(pwd)/slides:/app/slides msoedov/hacker-slides
```
2016-03-03 10:58:58 +01:00
2017-05-13 17:40:30 +02:00
Build locally
----
2016-03-03 10:58:58 +01:00
To build and run it locally
```go
go get
go run main.go
[GIN-debug] Listening and serving HTTP on :8080
```
2016-03-05 11:15:16 +01:00
And then you can just open [http://127.0.0.1:8080](http://127.0.0.1:8080) and it's ready to use with sample slides.
2016-03-03 10:58:58 +01:00
2017-02-08 02:03:07 +01:00
Run with docker
```shell
2017-11-12 23:48:48 +01:00
docker run -it -p 8080:8080 -v $(pwd)/slides:/app/slides msoedov/hacker-slides
2017-02-08 02:03:07 +01:00
```
2017-11-12 23:57:06 +01:00
Protect slides with password
2017-11-12 23:55:21 +01:00
----
2017-11-12 23:48:48 +01:00
Basic auth (disabled by default)
```shell
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
```
```shell
docker run -it -p 8080:8080 -e USER=bob -e PASSWORD=password1 -v $(pwd)/slides:/app/slides msoedov/hacker-slides
```
2017-02-08 02:03:07 +01:00
2016-03-03 10:58:58 +01:00
Getting Help
------------
For **feature requests** and **bug reports** submit an issue
2016-03-03 11:04:42 +01:00
to the GitHub issue tracker