{"id":34323443,"url":"https://github.com/civictechdc/codefordc.github.com","last_synced_at":"2025-12-17T14:56:15.563Z","repository":{"id":48136810,"uuid":"11922700","full_name":"civictechdc/codefordc.github.com","owner":"civictechdc","description":"[DEPRECATED] The old Code for DC website","archived":false,"fork":false,"pushed_at":"2022-10-05T22:43:17.000Z","size":20024,"stargazers_count":32,"open_issues_count":16,"forks_count":60,"subscribers_count":16,"default_branch":"master","last_synced_at":"2024-09-08T02:16:07.485Z","etag":null,"topics":["brigade","cfa","code-for-dc","deprecated","washington-dc"],"latest_commit_sha":null,"homepage":"https://codefordc.github.io/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/civictechdc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-08-06T11:45:40.000Z","updated_at":"2023-11-26T08:24:02.000Z","dependencies_parsed_at":"2023-01-19T07:30:50.248Z","dependency_job_id":null,"html_url":"https://github.com/civictechdc/codefordc.github.com","commit_stats":null,"previous_names":["civictechdc/codefordc.github.com","codefordc/codefordc.github.com"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/civictechdc/codefordc.github.com","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civictechdc%2Fcodefordc.github.com","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civictechdc%2Fcodefordc.github.com/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civictechdc%2Fcodefordc.github.com/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civictechdc%2Fcodefordc.github.com/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/civictechdc","download_url":"https://codeload.github.com/civictechdc/codefordc.github.com/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civictechdc%2Fcodefordc.github.com/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27783995,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-17T02:00:08.291Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["brigade","cfa","code-for-dc","deprecated","washington-dc"],"created_at":"2025-12-17T14:56:14.941Z","updated_at":"2025-12-17T14:56:15.554Z","avatar_url":"https://github.com/civictechdc.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Code For DC Website\n\n**PLEASE NOTE: This repository powers Code for DC’s old website, which you can find online [here](https://codefordc.github.io/). Code for DC’s [current website](https://codefordc.org/) is powered by the [`codefordc-website`](https://github.com/codefordc/codefordc-website) GitHub repository.**\n\n-----\n\nThis is the repository for the website for Code for DC, the DC chapter of the Code for America Brigade program.\n\nThis site is built on Github pages and uses Jekyll for its blog.\n\n## Contributing\n\nIf you want to make a blog post: read [this](https://github.com/codefordc/codefordc.github.com/blob/master/_resources/submitapost.md).\n\nIf you want to add a project to the projects page: read [this](https://github.com/codefordc/codefordc.github.com/blob/master/_resources/startaproject.md).\n\nFor everything else:\n\nFirst, make sure that you have [`git`](http://git-scm.com/downloads) on your computer. Create your own [fork](https://guides.github.com/activities/forking/) of the repository, then clone it to your computer:\n\n    git clone git@github.com:[YOUR GITHUB NAME]/codefordc-2.0.git\n\nYou can work on the `master` branch (which is the default), but it's preferable to set up a new branch if you're working on a specific feature:\n\n    git checkout -b [NEW BRANCH NAME]\n\nNext, you'll want to view the site locally using [`jekyll`](http://jekyllrb.com/docs/installation/). There are three ways to do this:\n\n### Using Docker\nDocker is a tool that abstracts away all of the environment configuration, allowing you to run this project (and others) without needing to install any other tools. To get started [install Docker](https://docs.docker.com/engine/installation/)\nand then run\n\n    docker run --volume=$(pwd):/srv/jekyll -p  127.0.0.1:4000:4000   codefordc2/codefordc.org\n\n\n### Less steps, but more points of failure\n\nMake sure that you have [Ruby](https://www.ruby-lang.org/en/downloads/) installed on your system.\n\nIf you do, try this:\n\n    gem install jekyll #sudo is probably required\n    jekyll serve -w\n\nHopefully it works! If not and you see something like `jekyll: command not found`, you'll need to add the jekyll executable's location to your shell's `$PATH` variable. Here's an example of how that might work, but you should do some Googling to understand what you're doing here:\n\n    gem which jekyll\n    # /usr/lib/ruby/gems/1.9.3/gems/jekyll-2.4.0/lib/jekyll.rb\n    export PATH=$PATH:/usr/lib/ruby/gems/1.9.3/gems/jekyll-2.4.0/bin\n    jekyll serve -w\n\nPoint your browser to 0.0.0.0:4000. As you can see, this is a bit of a hacky workaround. If you upgrade Ruby in the future, be aware that this might get confusing as you add more gems.\n\n### More steps, but more likely to work\n\nA more elegant solution is to use a Ruby manager. Both `rbenv` and `RVM` are popular, but this example will use the former for its simplicity. Install [it](https://github.com/sstephenson/rbenv#installation), making sure to set up the init script and restart your shell. This may take some effort, but will allow you to manage multiple versions of Ruby and their various dependencies across projects (this is a common problem in Rubyland).\n\nThen:\n\n    rbenv install 2.1.1\n    gem install bundler\n    bundle install\n    bundle exec jekyll serve -w\n\nPoint your browser to 0.0.0.0:4000.\n\n## License\n\nAs stated in [LICENSE](LICENSE), the code in this repo is available under the GNU General Public License v2.0.\n\nHowever, the copyright to certain parts of this repo is waived under the [Creative Commons Zero v1.0 license](http://creativecommons.org/publicdomain/zero/1.0/legalcode). Specifically, the following files are public domain:\n\n- [Code of Conduct](https://github.com/codefordc/codefordc.github.com/blob/master/_resources/codeofconduct.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcivictechdc%2Fcodefordc.github.com","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcivictechdc%2Fcodefordc.github.com","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcivictechdc%2Fcodefordc.github.com/lists"}