File tree 4 files changed +118
-0
lines changed
4 files changed +118
-0
lines changed Original file line number Diff line number Diff line change
1
+ coderockr.com
Original file line number Diff line number Diff line change
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
+ ```
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments