This repository is rendered online at http://deftwork.github.io, it contains a listing of repositories that are open source and maintained by DeftWork teams.
In order to have your repository show up at http://deftwork.github.io, a minor change to orgs.js is required.
- To add a single repository add a new entry to orgs.js, specify the Github organization name and the repository name (separate them with a
/
), and set thetype
torepo
, an example can be seen below:
{
"name": "RuntimeTools/appmetrics",
"type": "repo"
}
- To add all the repositories in a Github organization add a new entry to orgs.js, specify the Github organization name, and set the
type
toorg
, an example can be seen below:
{
"name": "DeftWork",
"type": "org"
}
From within the top level folder of the cloned repository run:
$ python -m http.server {port}
For example: python -m http.server 8000
or python -m SimpleHTTPServer 8000
-> Open the following URL in a browser:
http://localhost:8000/
- Clone the repository and checkout a new branch
$ git clone https://github.com/DeftWork/deftwork.github.io
$ git checkout -b branch_name
- Update the files you'd like to change
- Push the changes upstream
$ git add file1 file2
$ git commit -m "add your commit message here"
$ git push origin branch_name
- View your branch in Github and create a Pull Request