Skip to content

Commit 47292fc

Browse files
author
David Silva
committed
Merge branch 'release/0.9.0'
2 parents 3b5d291 + 5ee1764 commit 47292fc

File tree

117 files changed

+2830
-198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+2830
-198
lines changed

.circleci/config.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Javascript Node CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4+
#
5+
version: 2
6+
jobs:
7+
build:
8+
docker:
9+
# specify the version you desire here
10+
- image: circleci/node:7.10
11+
12+
# Specify service dependencies here if necessary
13+
# CircleCI maintains a library of pre-built images
14+
# documented at https://circleci.com/docs/2.0/circleci-images/
15+
# - image: circleci/mongo:3.4.4
16+
17+
working_directory: ~/repo
18+
19+
steps:
20+
- checkout
21+
22+
# Download and cache dependencies
23+
- restore_cache:
24+
keys:
25+
- v1-dependencies-{{ checksum "package.json" }}
26+
# fallback to using the latest cache if no exact match is found
27+
- v1-dependencies-
28+
29+
- run: npm install
30+
31+
- save_cache:
32+
paths:
33+
- node_modules
34+
key: v1-dependencies-{{ checksum "package.json" }}
35+
36+
# run tests!
37+
- run: npm run build
38+

CODE_OF_CONDUCT.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Microsoft Open Source Code of Conduct
2+
3+
This code of conduct outlines expectations for participation in Microsoft-managed open source communities, as well as steps for reporting unacceptable behavior. We are committed to providing a welcoming and inspiring community for all. People violating this code of conduct may be banned from the community.
4+
5+
## Our community strives to:
6+
7+
- **Be friendly and patient:** Remember you might not be communicating in someone else's primary spoken or programming language, and others may not have your level of understanding.
8+
- **Be welcoming:** Our communities welcome and support people of all backgrounds and identities. This includes, but is not limited to members of any race, ethnicity, culture, national origin, color, immigration status, social and economic class, educational level, sex, sexual orientation, gender identity and expression, age, size, family status, political belief, religion, and mental and physical ability.
9+
- **Be respectful:** We are a world-wide community of professionals, and we conduct ourselves professionally. Disagreement is no excuse for poor behavior and poor manners. Disrespectful and unacceptable behavior includes, but is not limited to:
10+
- Violent threats or language.
11+
- Discriminatory or derogatory jokes and language.
12+
- Posting sexually explicit or violent material.
13+
- Posting, or threatening to post, people's personally identifying information ("doxing").
14+
- Insults, especially those using discriminatory terms or slurs.
15+
- Behavior that could be perceived as sexual attention.
16+
- Advocating for or encouraging any of the above behaviors.
17+
- **Understand disagreements:** Disagreements, both social and technical, are useful learning opportunities. Seek to understand the other viewpoints and resolve differences constructively.
18+
- This code is not exhaustive or complete. It serves to capture our common understanding of a productive, collaborative environment. We expect the code to be followed in spirit as much as in the letter.
19+
20+
## Scope
21+
22+
This code of conduct applies to all repos and communities for codecorgi projects regardless of whether or not the repo explicitly calls out its use of this code. The code also applies in public spaces when an individual is representing a project or its community. Examples include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
23+
24+
## Reporting Code of Conduct Issues
25+
26+
We encourage all members to resolve issues on their own whenever possible. This builds a broader and deeper understanding and ultimately a healthier interaction. In the event that an issue cannot be resolved, please report your concerns by contacting [email protected] . Your report will be handled in accordance with the issue resolution process described in the
27+
[Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/).
28+
29+
### In your report please include:
30+
31+
Your contact information.
32+
33+
Names (real, usernames or pseudonyms) of any individuals involved. If there are additional witnesses, please include them as well.
34+
35+
Your account of what occurred, and if you believe the incident is ongoing. If there is a publicly available record (e.g. a mailing list archive or a public chat log), please include a link or attachment.
36+
37+
Any additional information that may be helpful.
38+
39+
All reports will be reviewed by a multi-person team and will result in a response that is deemed necessary and appropriate to the circumstances. Where additional perspectives are needed, the team may seek insight from others with relevant expertise or experience. The confidentiality of the person reporting the incident will be kept at all times. Involved parties are never part of the review team.
40+
41+
Anyone asked to stop unacceptable behavior is expected to comply immediately. If an individual engages in unacceptable behavior, the review team may take any action they deem appropriate, including a permanent ban from the community.
42+
43+
This code of conduct is based on the template established by the TODO Group and used by numerous other large communities (e.g., Facebook, Yahoo, Twitter, GitHub) and the Scope section from the Contributor Covenant version 1.4.
44+
45+
"Inspired" by Microsoft's [Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# codecorgi
22

3+
Checkout our progress on [![Waffle.io](https://badge.waffle.io/corgicode/frontend-react.svg?columns=all)](https://waffle.io/corgicode/frontend-react)
4+
35
Frontend project for [codecorgi](codecorgi.co).
46

57
Decided to open source it so that users can look at a non trivial codebase and follow development.
@@ -9,14 +11,17 @@ Redux and Redux Thunk boilerplate.
911

1012
[![Dependency Status](https://dependencyci.com/github/corgicode/frontend-react/badge)](https://dependencyci.com/github/corgicode/frontend-react)
1113

14+
[![Build Status](https://circleci.com/gh/corgicode/frontend-react.svg?style=shield)](https://circleci.com/gh/corgicode/frontend-react)
15+
16+
[ ![Codeship Status](https://app.codeship.com/projects/db18c140-ec1e-0135-a24a-2abb3399b63f/status?branch=master)](https://app.codeship.com/projects/270289)
17+
1218
* Tutorial: [Getting started with create-react-app, Redux, React Router & Redux Thunk](https://medium.com/@notrab/getting-started-with-create-react-app-redux-react-router-redux-thunk-d6a19259f71f)
13-
* Example: [View on Heroku](https://cra-redux-router-thunk.herokuapp.com/)
1419

1520
## Installation
1621

1722
```bash
18-
git clone https://github.com/notrab/create-react-app-redux.git
19-
cd create-react-app-redux
23+
git clone git@github.com:corgicode/frontend-react.git frontend
24+
cd frontend
2025
npm i
2126
```
2227

@@ -27,3 +32,11 @@ npm start
2732
```
2833

2934
You need to run a copy of the backend alongside and add all the env variables for it to work proper.
35+
36+
## Contributing
37+
38+
TODO :(
39+
40+
## Code Of Conduct
41+
42+
Find our [code of conduct on github](CODE_OF_CONDUCT.md)

0 commit comments

Comments
 (0)