https://github.com/kennethormandy/default
A starting points for certain projects.
https://github.com/kennethormandy/default
Last synced: 7 months ago
JSON representation
A starting points for certain projects.
- Host: GitHub
- URL: https://github.com/kennethormandy/default
- Owner: kennethormandy
- License: mit
- Created: 2014-05-15T03:21:27.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2015-05-28T00:27:05.000Z (about 11 years ago)
- Last Synced: 2025-01-24T09:41:35.607Z (over 1 year ago)
- Size: 243 KB
- Stars: 1
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://github.com/kennethormandy/default)
***
# Default
A starting points for certain projects.
## Getting started
Here’s where you write really fantastic instructions that helps people who may or may not even understand what Git is, use your project. For example, your sentences should probably be better than that one.
```bash
npm install -g harp
harp init -b kennethormandy/default
```
This prevents the Git history from being downloaded. And, hey, now you have [Harp](http://harpjs.com) installed, which is awesome anyway. If you want to go the Git route:
```bash
git clone https://github.com/kennethormandy/default new-project-name
cd project-name
# Please be careful…
rm -rf .git
```
1. Replace “Default” and “default” with your new repository’s name
2. Replace references to “kennethormandy” and my email with your details (unless you are me—which you probably are)
3. Make sure you’re onboard with what’s in [the contributing guide](CONTRIBUTING.md)
4. Fill out the rest of the [`package.json`](package.json)
5. As appropriate, add your company to the copyright statement below in [the license](LICENSE.md):
```markdown
Copyright © 2015 [Kenneth Ormandy](http://kennethormandy.com) & [Chloi Inc.](http://chloi.io)
```
6. Initialise and add remotes:
```sh
# Initialise the project
git init
# Add your remote repository
git remote add origin https://github.com/kennethormandy/default
```
## Contributing
Thanks for considering contributing! There’s information about how to [get started with Default here](CONTRIBUTING.md).
## License
[The MIT License (MIT)](LICENSE.md)
Copyright © 2015 [Kenneth Ormandy](http://kennethormandy.com)