Skip to content

Commit 5e72b23

Browse files
Update team
1 parent 699a348 commit 5e72b23

File tree

4 files changed

+118
-0
lines changed

4 files changed

+118
-0
lines changed

dist/CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
coderockr.com

dist/README.md

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
coderockr
2+
====================
3+
4+
## Setup
5+
### Requirements
6+
7+
Node `"^8.2.1"` (use nvm [here](https://github.com/creationix/nvm))
8+
9+
Yarn `"^1.3.2"` (install [here](https://yarnpkg.com))
10+
11+
### Structure folder
12+
13+
```
14+
coderockr
15+
├── .babelrc
16+
├── .eslintignore
17+
├── .eslintrc
18+
├── .gitignore
19+
├── CNAME
20+
├── crossdomain.xml
21+
├── gh-pages.sh
22+
├── gulpfile.js
23+
├── humans.txt
24+
├── package.json
25+
├── README.md
26+
├── robots.txt
27+
├── webpack.config.js
28+
├── dist
29+
└── src
30+
└── assets
31+
│ └── fonts
32+
│ └── images
33+
│ └── scripts
34+
│ └── styles
35+
└── templates
36+
└── components
37+
└── layouts
38+
└── page.html
39+
```
40+
41+
### Install dependencies
42+
43+
```bash
44+
yarn
45+
```
46+
47+
### Run
48+
49+
```bash
50+
yarn start
51+
```
52+
53+
### Build
54+
55+
```bash
56+
./build.sh
57+
```
58+
59+
### Deploy to Github Pages (https://github.com/Coderockr/coderockr.github.com)
60+
```bash
61+
./deploy.sh
62+
```

dist/crossdomain.xml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0"?>
2+
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
3+
<cross-domain-policy>
4+
5+
6+
<!-- Read this: www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html -->
7+
8+
<!-- Most restrictive policy: -->
9+
<site-control permitted-cross-domain-policies="none"/>
10+
11+
12+
13+
<!-- Least restrictive policy: -->
14+
<!--
15+
<site-control permitted-cross-domain-policies="all"/>
16+
<allow-access-from domain="*" to-ports="*" secure="false"/>
17+
<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
18+
-->
19+
<!--
20+
If you host a crossdomain.xml file with allow-access-from domain="*"
21+
and don’t understand all of the points described here, you probably
22+
have a nasty security vulnerability. ~ simon willison
23+
-->
24+
25+
</cross-domain-policy>

dist/humans.txt

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/* TEAM */
2+
CTO: Elton Luís Minetto
3+
Contact: eminetto@coderockr.com
4+
Twitter: @eminetto
5+
6+
CEO: Julia Possamai
7+
Contact: jpossamai@coderockr.com
8+
Facebook: fb.me/juls.possamai
9+
10+
Front-end Developer: Raony Marcondes
11+
Contact: raony@coderockr.com
12+
Facebook: fb.me/raonymarcondes
13+
14+
Front-end Developer: Vinicius Dacal Lopes
15+
Contact: vinicius@coderockr.com
16+
Twitter: @vinicius_dacal
17+
18+
Back-end Developer: Leandro Lugaresi
19+
Contact: leandro@coderockr.com
20+
Twitter: @leandrolugaresi
21+
22+
Back-end Developer: Lucas Abreu
23+
Contact: lucas@coderockr.com
24+
Twitter: @LucasSantAbreu
25+
26+
/* SITE */
27+
Last update: 2016/12/22
28+
Language: Portuguese
29+
Doctype: HTML5
30+
IDE: Sublime Text

0 commit comments

Comments
 (0)