Skip to content
This repository has been archived by the owner on Jul 10, 2020. It is now read-only.

Commit

Permalink
Adds yo cf.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Morici authored and Mike Morici committed Jan 21, 2015
1 parent 36a88f5 commit 7330725
Show file tree
Hide file tree
Showing 16 changed files with 1,500 additions and 35 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
@@ -0,0 +1,3 @@
{
"directory": "src/vendor"
}
52 changes: 32 additions & 20 deletions .gitignore
Expand Up @@ -4,30 +4,42 @@
.DS_Store?
.Spotlight-V100
.Trashes
ethumbs.db
ehthumbs.db
Thumbs.db
/.project
jshint.out.xml
csslint.out.xml
*.orig
*.tmp
*.log

# Node modules for local development
####################################
front/node_modules
# Vim swap files #
##################
*.swp

# Bower downloaded packages #
#############################
# uncomment once cf-framework is in the public github:
front/vendor
# Python #
#################
*.pyc
*.egg-info/
__pycache__/
*.py[cod]

# Django #
#################
*.egg-info
.installed.cfg

# Unit test / coverage reports
#################
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Front-End #
#############
node_modules/
bower_components/
.grunt/
src/vendor/

# Test reports #
###################
front/test/coverage
front/test/junit

# Jekyll #
##########
# When running Jekyll locally, it outputs the files into the _site directory
_site
_site/
17 changes: 17 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,17 @@
All notable changes to this project will be documented in this file.
We follow the [Semantic Versioning 2.0.0](http://semver.org/) format.


## x.y.z - YYYY-MM-DD

### Added
- Lorem ipsum dolor sit amet

### Deprecated
- Nothing.

### Removed
- Nothing.

### Fixed
- Nothing.
37 changes: 29 additions & 8 deletions CONTRIBUTING.md
@@ -1,11 +1,32 @@
## Public domain
# Guidance on how to contribute

The project is in the public domain within the United States, and
copyright and related rights in the work worldwide are waived through
the [CC0 1.0 Universal public domain dedication][CC0].
> All contributions to this project will be released under the CC0 public domain
> dedication. By submitting a pull request or filing a bug, issue, or
> feature request, you are agreeing to comply with this waiver of copyright interest.
> Details can be found in our [TERMS](TERMS.md) and [LICENCE](LICENSE).
All contributions to this project will be released under the CC0
dedication. By submitting a pull request, you are agreeing to comply
with this waiver of copyright interest.

[CC0]: http://creativecommons.org/publicdomain/zero/1.0/
There are two primary ways to help:
- Using the issue tracker, and
- Changing the code-base.


## Using the issue tracker

Use the issue tracker to suggest feature requests, report bugs, and ask questions.
This is also a great way to connect with the developers of the project as well
as others who are interested in this solution.

Use the issue tracker to find ways to contribute. Find a bug or a feature, mention in
the issue that you will take on that effort, then follow the _Changing the code-base_
guidance below.


## Changing the code-base

Generally speaking, you should fork this repository, make changes in your
own fork, and then submit a pull-request. All new code should have associated unit
tests that validate implemented features and the presence or lack of defects.
Additionally, the code should follow any stylistic and architectural guidelines
prescribed by the project. In the absence of such guidelines, mimic the styles
and patterns in the existing code-base.

0 comments on commit 7330725

Please sign in to comment.