{"id":18300431,"url":"https://github.com/jpdevries/coreyswarren","last_synced_at":"2025-07-28T16:07:54.335Z","repository":{"id":10999304,"uuid":"13321812","full_name":"jpdevries/coreyswarren","owner":"jpdevries","description":"coreyswarren.com portfolio site","archived":false,"fork":false,"pushed_at":"2013-10-20T02:35:17.000Z","size":15576,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T09:37:46.286Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jpdevries.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-10-04T10:35:13.000Z","updated_at":"2013-11-25T01:27:52.000Z","dependencies_parsed_at":"2022-09-23T12:42:34.163Z","dependency_job_id":null,"html_url":"https://github.com/jpdevries/coreyswarren","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jpdevries/coreyswarren","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpdevries%2Fcoreyswarren","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpdevries%2Fcoreyswarren/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpdevries%2Fcoreyswarren/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpdevries%2Fcoreyswarren/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jpdevries","download_url":"https://codeload.github.com/jpdevries/coreyswarren/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpdevries%2Fcoreyswarren/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267543275,"owners_count":24104538,"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-07-28T02:00:09.689Z","response_time":68,"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":[],"created_at":"2024-11-05T15:12:27.772Z","updated_at":"2025-07-28T16:07:54.292Z","avatar_url":"https://github.com/jpdevries.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Corey Warren\n\n\u003e Portfolio of Corey Warren\n\nThis project was created using the [grunt-neat-pages](https://github.com/jpdevries/grunt-neat-pages/) boilerplate.\n[Sass](http://sass-lang.com/) is used to pre-process CSS.\n\n### Includes:\n\n - [HTML5 Boilerplate](http://html5boilerplate.com/)\n - [Bourbon](http://bourbon.io/)\n - [Neat](http://neat.bourbon.io/)\n - [Font-Awesome](http://fortawesome.github.io/Font-Awesome/)\n \nContribution Guides\n--------------------------------------\n\nThe visual design of coreyswarren.com is developed using Sass and Grunt to allow front end developers to quickly create custom themes and contribute to the core. In the spirit of open source software development, we always encourages community code contribution. To help you get started and before you jump into writing code, be sure to read these important contribution guidelines thoroughly.\n\nWhat you need\n--------------------------------------\n\nIn order to build coreyswarren.com front end assets, you need to have Ruby, Node.js/npm latest and git 1.7 or later.\n(Earlier versions might work OK, but are not tested.)\n\nFor Windows you have to download and install [git](http://git-scm.com/downloads) and [Node.js](http://nodejs.org/download/).\n\nMac OS users should install [Homebrew](http://mxcl.github.com/homebrew/). Once Homebrew is installed, run `brew install git` to install git,\nand `brew install node` to install Node.js.\n\nLinux/BSD users should use their appropriate package managers to install git and Node.js, or build from source\nif you swing that way. Easy-peasy.\n\nInstalling Ruby and Ruby Gems\n----------------------------\nYou'll need ruby and sass gems installed. If you're on OS X or Linux you probably already have Ruby installed; test with ruby -v in your terminal. When you've confirmed you have Ruby installed, run gem install sass to install Sass.\n\n```bash\ngem install sass\n```\n\nMake sure you have `sass` installed by testing:\n\n```bash\nsass --version\n```\n_Note: Depending on your ruby setup you may need to install gems using `sudo gem install sass`._\n\nInstalling Grunt \u0026 Grunt Packages\n----------------------------\n\nFirst, [clone a copy of this git repo](github-mac://openRepo/https://github.com/jpdevries/coreyswarren) by running:\n\n```bash\ngit clone git://github.com/jpdevries/coreyswarren.git\n```\n\nInstall the [grunt-cli](http://gruntjs.com/getting-started#installing-the-cli) package if you haven't before. These should be done as global installs:\n\n```bash\nnpm install -g grunt-cli\n```\n\nMake sure you have `grunt` installed by testing:\n\n```bash\ngrunt --version\n```\n\nEnter the default template directory and install the Node dependencies, this time *without* specifying a global(-g) install:\n\n```bash\ncd coreyswarren/_build/templates/default\nnpm install\n```\n_Note: `npm install` updates dependencies and should be run whenever you pull from git._\n\nOptionally enable Growl notifications install [terminal-notifier](https://github.com/alextucker/grunt-growl#getting-started) with RubyGems:\n```bash\ngem install terminal-notifier\n```\n_Note: Depending on your ruby setup you may need to install gems using `sudo gem install terminal-notifier`._\n\nGrunt Commands\n----------------------------\n\n__Build__\u003cbr\u003e\nFetch dependencies (such as bourbon), move items into place and compile by running:\n\n```bash\ngrunt build\n```\n\n__Watch__\u003cbr\u003e\nCompile the Sass and watch files for changes type the following:\n\n```bash\ngrunt\n```\n_Note: grunt is now watching files for changes. When Sass files are changed CSS will automatically be generated.\u003cbr\u003eInstall the LiveReload [browser extension](http://feedback.livereload.com/knowledgebase/articles/86242-how-do-i-install-and-use-the-browser-extensions-) to inject CSS changes without a page refresh._\n\n__Expand__\u003cbr\u003e\nCompile Sass using expanded output style for development by running:\n\n```bash\ngrunt expand\n```\n_Note: do not check in uncompressed CSS._\n\n \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpdevries%2Fcoreyswarren","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjpdevries%2Fcoreyswarren","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpdevries%2Fcoreyswarren/lists"}