{"id":22001476,"url":"https://github.com/islco/ampm","last_synced_at":"2026-04-12T10:43:44.334Z","repository":{"id":149825199,"uuid":"36470460","full_name":"islco/ampm","owner":"islco","description":"Wake up with DC’s Project Manager Community","archived":false,"fork":false,"pushed_at":"2019-03-11T19:08:30.000Z","size":9552,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-03T16:52:22.123Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://ampmdc.co","language":"CSS","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/islco.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-05-28T22:50:13.000Z","updated_at":"2019-12-29T21:06:30.000Z","dependencies_parsed_at":"2023-04-28T05:33:57.931Z","dependency_job_id":null,"html_url":"https://github.com/islco/ampm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/islco/ampm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/islco%2Fampm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/islco%2Fampm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/islco%2Fampm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/islco%2Fampm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/islco","download_url":"https://codeload.github.com/islco/ampm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/islco%2Fampm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31712292,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T06:22:27.080Z","status":"ssl_error","status_checked_at":"2026-04-12T06:21:52.710Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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-29T23:13:56.772Z","updated_at":"2026-04-12T10:43:44.319Z","avatar_url":"https://github.com/islco.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ampm\n\nWake up with DC’s Project Manager Community\n\n## Requirements\n\n- Node 6.3.x\n- nvm\n\n## Installation\n\n```\n$ nvm install\n$ npm install\n```\n\n## Quick Start\n\n```\n$ nvm use\n$ npm run dev\n```\n\n## Usage\n\nFirst, install your dependencies:\n\n```\n$ npm install\n```\n\nTo start a Browsersync server and watch files for development:\n\n```\n$ npm run dev\n```\n\nor to build, cachebust, and minify all assets for production:\n\n```\n$ npm run build\n```\n\nYou can also optimize PNG and JPEG images using [tinify](https://www.npmjs.com/package/tinify):\n\n```\n$ npm run tinify\n```\n\n## Configuration\n\n[nconf](https://github.com/indexzero/nconf) is used to handle configuration which lives in `config.js`.\n\nAll configuration variables should be defined in the `nconf.defaults` and it should be indicated if they are required.\n\nThe configuration is passed to [envyify](https://github.com/zertosh/loose-envify) for transforming with browserify. This\nmeans you can use `process.env.FOO` in your browserified JavaScript files and the appropriate environment variable\nwill be substituted during the build process to be shipped in the browser.\n\n__🔐 TIP:__ Don't leak secret keys, neither by commmitting them nor by passing them to browserify. If the var you are\nusing should be kept secret, you should not add it to `config.js`.\n\n\n__⏱ TIP:__ If the config var is an amount of time, specify the units in the var name:\n\n```\nnconf.defaults({\n  TIMEOUT_MS: 2000,\n  EXPIRATION_S: 3\n})\n```\n\n## Foundation\n\n[Foundation Sites](http://foundation.zurb.com/sites.html) 6.2.0 is included with a small set of components enabled by\ndefault. There is a list of everything you can add at [Foundation's Kitchen Sink](http://foundation.zurb.com/sites/docs/kitchen-sink.html).\nTo add more, uncomment the appropriate includes from the `app.scss` file along\nwith the appropriate settings section for the component in the `_.settings.scss`\nfile. This is described in detail at [Foundation's Sass docs](http://foundation.zurb.com/sites/docs/sass.html#adjusting-css-output).\n\n[Browserify-shim](https://github.com/thlorenz/browserify-shim) is used to bundle individual Foundation JavaScript plugins. When adding\nnew plugins, you will need to update the shim configuration in `package.json` with the [appropriate Foundation files](http://foundation.zurb.com/sites/docs/javascript.html#file-structure).\n\nFoundation's documentation can be found at [foundation.zurb.com](http://foundation.zurb.com/sites/docs/).\nTo get started with what's included by default, read these docs:\n\n* [Global styles](http://foundation.zurb.com/sites/docs/global.html)\n* [Flex Grid](http://foundation.zurb.com/sites/docs/flex-grid.html) and [Media Queries](http://foundation.zurb.com/sites/docs/media-queries.html)\n* [Typography](http://foundation.zurb.com/sites/docs/typography-base.html) and [Helper Classes](http://foundation.zurb.com/sites/docs/typography-helpers.html)\n* [Forms](http://foundation.zurb.com/sites/docs/forms.html) and [Buttons](http://foundation.zurb.com/sites/docs/button.html)\n* [Button Group](http://foundation.zurb.com/sites/docs/button-group.html)\n* [Visibility Classes](http://foundation.zurb.com/sites/docs/visibility.html)\n* [Float Classes](http://foundation.zurb.com/sites/docs/float-classes.html)\n* [Flexbox Classes](http://foundation.zurb.com/sites/docs/flexbox.html)\n* [JavaScript](http://foundation.zurb.com/sites/docs/javascript.html)\n\n## ESlint\n\n[ESlint](http://eslint.org/) is used for static analysis of JavaScript files. By default,\nthe `.eslintrc` is configured to extend [Airbnb's base](https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb#eslint-config-airbnbbase) configuration,\nwith a few small modifications:\n\n* 2 spaces for indentation.\n* No semicolons.\n* Only single quotes.\n* Unix linebreaks.\n\nIf you use global variables that are already defined in the DOM, add them to the `globals` object\nin the `.eslintrc` to [register them](http://eslint.org/docs/user-guide/configuring#specifying-globals) with the linter.\n\n## Stylelint\n\n[Stylelint](https://github.com/stylelint/stylelint) is used for static analysis of SASS files. By default,\nthe `.stylelintrc` is configured to extend [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard)\nand uses [stylelint-selector-bem-pattern](https://github.com/davidtheclark/stylelint-selector-bem-pattern),\nwith a few small modifications:\n\n* 4 spaces for indentation.\n* Only single quotes.\n* No vendor prefixes (autoprefixer is preferred).\n* Max of 2 adjacent empty lines.\n* Required empty line between nested selectors, except first nested.\n* No [browser hacks](https://github.com/stylelint/stylelint/tree/master/src/rules/no-browser-hacks).\n* No [unsupported browser features](http://stylelint.io/user-guide/rules/no-unsupported-browser-features/).\n\nGenerated by [mo static](https://github.com/istrategylabs/mo-static).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fislco%2Fampm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fislco%2Fampm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fislco%2Fampm/lists"}