{"id":31831228,"url":"https://github.com/livingdocsio/magazine-example","last_synced_at":"2026-02-16T20:03:33.896Z","repository":{"id":52417098,"uuid":"138893338","full_name":"livingdocsIO/magazine-example","owner":"livingdocsIO","description":"Livingdocs magazine example (living-times)","archived":false,"fork":false,"pushed_at":"2023-12-15T20:33:09.000Z","size":6069,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-10-19T05:03:04.660Z","etag":null,"topics":["livingdocs","livingdocs-delivery"],"latest_commit_sha":null,"homepage":"https://magazine-example.livingdocs.io","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/livingdocsIO.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-06-27T14:32:04.000Z","updated_at":"2021-04-29T20:09:30.000Z","dependencies_parsed_at":"2025-10-11T21:48:26.707Z","dependency_job_id":"f563a397-d1fa-4a00-9c80-70d24490de52","html_url":"https://github.com/livingdocsIO/magazine-example","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/livingdocsIO/magazine-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livingdocsIO%2Fmagazine-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livingdocsIO%2Fmagazine-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livingdocsIO%2Fmagazine-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livingdocsIO%2Fmagazine-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/livingdocsIO","download_url":"https://codeload.github.com/livingdocsIO/magazine-example/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livingdocsIO%2Fmagazine-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29516947,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T18:37:19.720Z","status":"ssl_error","status_checked_at":"2026-02-16T18:36:46.920Z","response_time":115,"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":["livingdocs","livingdocs-delivery"],"created_at":"2025-10-11T21:48:20.126Z","updated_at":"2026-02-16T20:03:33.866Z","avatar_url":"https://github.com/livingdocsIO.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Magazine Example\n\nThis is an open-source demo magazine for developers working with the Livingdocs service.\nBy default it will run with mock data from the `mocks` folder. An online version can be found on https://magazine-example.livingdocs.io\n\nIn order to run it locally with your own data, you will need to create an access token in Livingdocs and add it to `conf/environments/local.js`.\n\nThe design is written in scss and you find the sources in `design/source/stylesheets`. This is a good place to start making the magazine look like yours.\n\nBefore starting to develop make sure to check out our SDK: https://github.com/livingdocsIO/livingdocs-node-sdk\n\n## Prerequisites\nNode v8.x.x\n\n## Getting Started\n\n### First of all\n\n```\nnpm install\n```\n\n### Running the demo magazine locally (dev mode with mocks)\n\nStart the server:\n\n```\nENVIRONMENT=local npm start\n```\n\nTo automatically open the magazine in the browser run:\n\n```\nENVIRONMENT=local npm run start:open\n```\n\n### Running the demo magazine locally (dev mode with backend data source, no mocks)\n\nOpen `conf/environments/local.js` and set your target data source, e.g. see client:\n\n```js\nmodule.exports = {\n  client: {\n    url: 'https://server.livingdocs.io', // we take the production livingdocs service server here\n    accessToken: 'your access token' // the access token to your magazine project\n  },\n  imageServices: {\n    imgix: {\n      host: 'https://livingdocs-dev.imgix.net'\n    }\n  }\n}\n```\n\nStart the server:\n\n```\nENVIRONMENT=local npm run design:dev\n```\n\nTo automatically open the magazine in the browser run:\n\n```\nENVIRONMENT=local npm run design:dev:open\n```\n\n### Running the demo magazine for production (no dev helpers and watchers)\n\nBuild the design:\n\n```\nnpm run design:build\n```\n\nStart the server:\n\n```\nENVIRONMENT=local npm run start:magazine\n```\n(or use your custom environment e.g. `production`, make sure to create a corresponding file under `conf/environments`, learn more about this on the \"Deploy to now.sh\" section)\n\nTo run the demo magazine with mocks in production mode:\n\n```\nENVIRONMENT=local npm run start:magazine -- --mocked\n```\n\n### Deploy to now.sh\n\nThe deployment to now.sh serves as a sample deployment.\n\n1. Create an account on https://zeit.co/now\n2. Add a file `now.js` to `conf/environments` with the following content:\n\n```js\n/* eslint-disable max-len */\n\nmodule.exports = {\n  client: {\n    url: 'https://server.livingdocs.io',\n    accessToken: 'your access token'\n  },\n  imageServices: {\n    imgix: {\n      host: 'https://livingdocs-dev.imgix.net'\n    }\n  }\n}\n```\n(make sure to replace `'your access token'`)\n\n3. From your command line at the root directory of this repository run `rm -rf node_modules \u0026\u0026 npm install \u0026\u0026 now`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flivingdocsio%2Fmagazine-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flivingdocsio%2Fmagazine-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flivingdocsio%2Fmagazine-example/lists"}