Skip to content

Commit

Permalink
tooling around the repo + pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jondot committed Mar 20, 2017
1 parent ddc4d8b commit 3b28a2a
Show file tree
Hide file tree
Showing 10 changed files with 136 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
site/
docs/
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
www.awesome-react-native.com
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GEM
httparty (0.13.7)
json (~> 1.8)
multi_xml (>= 0.5.2)
json (1.8.3)
json (1.8.6)
kramdown (1.8.0)
multi_xml (0.5.5)
parallel (1.6.1)
Expand All @@ -18,4 +18,4 @@ DEPENDENCIES
parallel

BUNDLED WITH
1.11.2
1.14.6
30 changes: 30 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
install:
@bundle install
@gem install jill
@pip install -r requirements.txt

docs:
@rm -rf docs
@mkdir docs
@cp *.md docs/
@cp README.md docs/index.md
@cp extra.css docs/
@cp icon.svg docs/
@cp CNAME docs/

publish: docs
@mkdocs gh-deploy --clean
@rm -rf docs

serve: docs
@mkdocs serve

check:
@bundle exec ruby dedup.rb && bundle exec ruby validate.rb

stars:
@sh starify.sh

.PHONY: docs publish serve check stars install


42 changes: 34 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,38 @@

<img src="https://travis-ci.org/jondot/awesome-react-native.svg?branch=master" alt="Build Status" />

A curated list of awesome articles, tutorials and resources dealing
with React Native.

Inspired by [awesome-go](https://github.com/avelino/awesome-go), which was in turn inspired by [awesome-python](https://github.com/vinta/awesome-python).

Many thanks to everyone on the [contributor list](https://github.com/jondot/awesome-react-native/graphs/contributors) :)

# Content
## Buzzing

<div style="text-align: center"><table><tr>
<td style="text-align: center">
<a href="https://www.youtube.com/watch?v=UPrKMGPDbtY">
<img src="https://img.youtube.com/vi/UPrKMGPDbtY/0.jpg" width="120"/>
<br/>
Joel on Performance
</a>
</td>
<td style="text-align: center">
<a href="https://www.youtube.com/watch?v=9baaVjGdBqs">
<img src="https://img.youtube.com/vi/9baaVjGdBqs/0.jpg" width="120"/>
<br/>
Create React Native App
</a>
</td>
<td style="text-align: center">
<a href="https://facebook.github.io/react-native/blog/2017/03/13/better-list-views.html">
<img src="icon.svg" width="120" height="90" style="
background: #d0d0d0;
padding: 10px;
">
<br/>
Better List Views
</a>
</td>
</tr></table></div>

Have something that belongs here? [drop me a line!](mailto:[email protected])

## Sections

- [Conferences](#conferences)
- [Articles](#articles)
Expand All @@ -27,6 +51,8 @@ Many thanks to everyone on the [contributor list](https://github.com/jondot/awes
- [Blogs](#blogs)
- [Releases](#releases)

Many thanks to everyone on the [contributor list](https://github.com/jondot/awesome-react-native/graphs/contributors) :)

## Conferences

Conferences dedicated to React Native specifically. A listing of React general conferences can be found on the [ReactJS site](https://facebook.github.io/react/docs/conferences.html).
Expand Down
6 changes: 6 additions & 0 deletions extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.md-header[data-md-state=shadow]{
box-shadow:none;
}
.md-typeset table:not([class]){
box-shadow: none;
}
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
site_name: "Awesome React Native"
site_url: "http://awesome-react-native.com"
site_description: "A curated list of awesome articles, tutorials and resources dealing
with React Native."
site_author: "Dotan Nahum"
repo_url: "https://github.com/jondot/awesome-react-native"
google_analytics: ['UA-7131053-20', 'auto']
theme: material
pages:
- "Awesome React Native": "index.md"
- "Contributing": "CONTRIBUTING.md"
extra:
palette:
primary: 'light blue'
accent: 'light blue'
logo: 'icon.svg'

markdown_extensions:
- toc:
permalink: true
- markdown.extensions.admonition
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc(permalink=true)
- pymdownx.arithmatex
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.critic
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mkdocs>=0.16
pymdown-extensions>=1.2

0 comments on commit 3b28a2a

Please sign in to comment.