{"id":21848956,"url":"https://github.com/civilcode/dotfiles","last_synced_at":"2026-04-17T00:02:41.020Z","repository":{"id":99410933,"uuid":"74163947","full_name":"civilcode/dotfiles","owner":"civilcode","description":"A set of zsh, git and other dev tool configuration files.","archived":false,"fork":false,"pushed_at":"2023-10-15T13:18:25.000Z","size":37,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-21T17:54:33.049Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/civilcode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-11-18T20:27:15.000Z","updated_at":"2023-10-15T13:15:52.000Z","dependencies_parsed_at":"2026-02-24T08:01:37.372Z","dependency_job_id":null,"html_url":"https://github.com/civilcode/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/civilcode/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civilcode%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civilcode%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civilcode%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civilcode%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/civilcode","download_url":"https://codeload.github.com/civilcode/dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civilcode%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31909235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-28T00:09:42.747Z","updated_at":"2026-04-17T00:02:40.966Z","avatar_url":"https://github.com/civilcode.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"CivilCode dotfiles\n===================\n\n![prompt](http://images.thoughtbot.com/thoughtbot-dotfiles-prompt.png)\n\nPrerequisites\n-------------\n\nThe following dependencies have been installed using the [laptop](https://github.com/civilcode/laptop)\nscript and you SHOULD NOT have to install these manually.\n\nInstall [rcm](https://github.com/thoughtbot/rcm):\n\n    brew tap thoughtbot/formulae\n    brew install rcm\n\nInstall\n-------\n\nClone onto your laptop:\n\n    mkdir -p ~/Development \u0026\u0026 cd ~/Development\n    git clone https://github.com/civilcode/dotfiles.git\n\nInstall the dotfiles:\n\n    env RCRC=$HOME/Development/dotfiles/rcrc rcup\n\nAfter the initial installation, you can run `rcup` without the one-time variable\n`RCRC` being set (`rcup` will symlink the repo's `rcrc` to `~/.rcrc` for future\nruns of `rcup`). [See\nexample](https://github.com/thoughtbot/dotfiles/blob/master/rcrc).\n\nThis command will create symlinks for config files in your home directory.\nSetting the `RCRC` environment variable tells `rcup` to use standard\nconfiguration options:\n\n* Exclude the `README.md` and `LICENSE` files, which are part of\n  the `dotfiles` repository but do not need to be symlinked in.\n* Give precedence to personal overrides which by default are placed in\n  `~/Development/dotfiles.local`\n\nYou can safely run `rcup` multiple times to update:\n\n    rcup\n\nYou should run `rcup` after pulling a new version of the repository to symlink\nany new files in the repository.\n\nMake your own customizations\n----------------------------\n\nCreate a directory for your personal customizations:\n\n    mkdir ~/Development/dotfiles.local\n\nPut your customizations in `~/dotfiles.local` appended with `.local`:\n\n* `~/Development/dotfiles.local/aliases.local`\n* `~/Development/dotfiles.local/git_template.local/*`\n* `~/Development/dotfiles.local/gitconfig.local`\n* `~/Development/dotfiles.local/psqlrc.local` (we supply a blank `psqlrc.local` to prevent `psql` from\n  throwing an error, but you should overwrite the file with your own copy)\n\nFor example, your `~/.aliases.local` might look like this:\n\n    # Productivity\n    alias todo='$EDITOR ~/.todo'\n\nYour `~/.gitconfig.local` might look like this:\n\n    [alias]\n      l = log --pretty=colored\n    [pretty]\n      colored = format:%Cred%h%Creset %s %Cgreen(%cr) %C(bold blue)%an%Creset\n    [user]\n      name = Dan Croak\n      email = dan@thoughtbot.com\n\nTo extend your `git` hooks, create executable scripts in\n`~/.git_template.local/hooks/*` files.\n\nYour `~/.bash.local` might look like this:\n\n    # load pyenv if available\n    if which pyenv \u0026\u003e/dev/null ; then\n      eval \"$(pyenv init -)\"\n    fi\n\nCredits\n-------\n\nThe CivilCode Inc. dotfiles is based on and inspired by\n[thoughtbot's dotfiles](https://github.com/thoughtbot/dotfiles).\n\nthoughtbot's original work remains covered under an\n[MIT License](https://github.com/thoughtbot/dotfiles/blob/a8bc74d10c62c813b625c0c8a28a996249d71c4c/LICENSE).\n\n## About the CivilCode Collective\n\nThe [CivilCode Collective](http://www.civilcode.io), a group of freelance developers, build tailored business applications in [Elixir](http://elixir-lang.org/) and [Phoenix](http://www.phoenixframework.org/)\nin Montreal, Canada.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcivilcode%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcivilcode%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcivilcode%2Fdotfiles/lists"}