Skip to content

Commit 33f10f6

Browse files
committed
init: first stab
0 parents  commit 33f10f6

19 files changed

+6375
-0
lines changed

.babelrc

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"presets": [
3+
[ "es2015", { "loose": true, "modules" : false } ],
4+
"stage-0",
5+
"react"
6+
],
7+
"plugins": [
8+
"transform-decorators-legacy",
9+
],
10+
"env": {
11+
"production": {
12+
"plugins": [
13+
"transform-es2015-modules-commonjs",
14+
"transform-react-remove-prop-types",
15+
"transform-react-constant-elements",
16+
"transform-react-inline-elements",
17+
"transform-runtime",
18+
"transform-decorators-legacy",
19+
],
20+
},
21+
"test": {
22+
"plugins": [
23+
"transform-es2015-modules-commonjs"
24+
]
25+
}
26+
}
27+
}

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist/

.eslintrc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
"extends":
3+
- "formidable/configurations/es6-react"
4+
5+
"rules":
6+
"indent": [2, 2, {"SwitchCase": 1}]
7+
"max-len": 0
8+
"no-magic-numbers": 0
9+
"react/prefer-es6-class": 0
10+
"react/no-multi-comp": 0
11+
12+
"env":
13+
"browser": true,
14+
"node": true
15+
"globals":
16+
"afterEach": true,
17+
"describe": true,
18+
"expect": true,
19+
"it": true,
20+
"jest": true,
21+
"test": true

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
node_modules
3+
npm-debug.log
4+
dist

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.markdown

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Spectacle Boilerplate
2+
3+
## Reference
4+
5+
The Spectacle core API is available at [https://github.com/FormidableLabs/spectacle/blob/master/README.markdown](https://github.com/FormidableLabs/spectacle/blob/master/README.markdown).
6+
7+
## Development
8+
9+
After downloading the boilerplate, your first order of business is to open terminal and run `yarn`. (or `npm install` if you're about that life)
10+
11+
Next, run `rm -R .git` to remove the existing version control.
12+
13+
Then, to start up the local server, run `npm start`
14+
15+
Open a browser and hit [http://localhost:3000](http://localhost:3000), and we are ready to roll
16+
17+
## Build & Deployment
18+
19+
Building the dist version of the project is as easy as running `npm run build`
20+
21+
If you want to deploy the slideshow to surge, run `npm run deploy`

assets/lnug-logo.svg

Lines changed: 93 additions & 0 deletions
Loading

assets/makers_logo.png

42.9 KB
Loading

assets/pizza-1.gif

36.6 KB
Loading

assets/pusher_logo_white.png

159 KB
Loading

0 commit comments

Comments
 (0)