{"id":19570711,"url":"https://github.com/natthasath/demo-docusaurus-netlify","last_synced_at":"2026-06-06T20:32:05.414Z","repository":{"id":206139925,"uuid":"715944930","full_name":"natthasath/demo-docusaurus-netlify","owner":"natthasath","description":"Netlify: A modern web development platform that streamlines the process from code to deployment. With built-in CI/CD, automated hosting, and serverless functionalities, it empowers developers to focus on building great websites and applications.","archived":false,"fork":false,"pushed_at":"2023-11-08T08:53:23.000Z","size":373,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-02-26T10:45:16.400Z","etag":null,"topics":["decap-cms","docusaurus","netlify"],"latest_commit_sha":null,"homepage":"https://dainty-flan-38b69b.netlify.app/","language":"JavaScript","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/natthasath.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}},"created_at":"2023-11-08T06:38:11.000Z","updated_at":"2023-11-08T07:41:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"eb5c8adc-b1a2-4c36-8042-457272cedeba","html_url":"https://github.com/natthasath/demo-docusaurus-netlify","commit_stats":null,"previous_names":["natthasath/demo-docusaurus-netlify"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/natthasath/demo-docusaurus-netlify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natthasath%2Fdemo-docusaurus-netlify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natthasath%2Fdemo-docusaurus-netlify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natthasath%2Fdemo-docusaurus-netlify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natthasath%2Fdemo-docusaurus-netlify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/natthasath","download_url":"https://codeload.github.com/natthasath/demo-docusaurus-netlify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natthasath%2Fdemo-docusaurus-netlify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285319005,"owners_count":27151474,"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-11-19T02:00:05.673Z","response_time":65,"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":["decap-cms","docusaurus","netlify"],"created_at":"2024-11-11T06:16:08.651Z","updated_at":"2025-11-19T20:03:20.574Z","avatar_url":"https://github.com/natthasath.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🎉 DEMO Docusaurus Netlify\n\nNetlify: A modern web development platform that streamlines the process from code to deployment. With built-in CI/CD, automated hosting, and serverless functionalities, it empowers developers to focus on building great websites and applications.\n\n![version](https://img.shields.io/badge/version-1.0-blue)\n![rating](https://img.shields.io/badge/rating-★★★★★-yellow)\n![uptime](https://img.shields.io/badge/uptime-100%25-brightgreen)\n\n### 🚀 Setup\n\n- Create Start Project\n\n```\nnpx create-docusaurus@latest my-website classic\n```\n\n- Make Directory `admin`\n\n```\ncd static\nmkdir admin\n```\n\n- Create File in `admin`\n\n```\ncd admin\ntouch config.yml\ntouch index.html\n```\n\n- Edit `index.html`\n\n```\n\u003c!doctype html\u003e\n\u003chtml\u003e\n\u003chead\u003e\n  \u003cmeta charset=\"utf-8\" /\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" /\u003e\n  \u003ctitle\u003eContent Manager\u003c/title\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n  \u003c!-- Include the script that builds the page and powers Decap CMS --\u003e\n  \u003cscript src=\"https://unpkg.com/decap-cms@^3.0.0/dist/decap-cms.js\"\u003e\u003c/script\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n- Edit `config.yml`\n\n```\nbackend:\n  name: github\n  branch: main \n  repo: \u003cyour-github\u003e/my-website\n\n# These lines should *not* be indented\nmedia_folder: \"static/img\" # Media files will be stored in the repo under static/images/uploads\npublic_folder: \"/img/\" # The src attribute for uploaded media will begin with /images/uploads\n\ncollections:\n- name: blog\n  label: \"blog\"\n  folder: blog\n  identifier_field: title\n  extension: md\n  widget: \"list\"\n  create: true\n  slug: \"{{year}}-{{month}}-{{day}}-{{slug}}\" # Filename template, e.g., YYYY-MM-DD-title.md\n  fields:\n    - { name: title, label: Title, widget: string }\n    - { name: body, label: Body, widget: markdown }\n    - { name: slug, label: Slug, widget: string }\n    - label: \"Tags\"\n      name: \"tags\"\n      widget: \"list\"\n    - label: \"Authors\"\n      name: \"authors\" \n      widget: \"list\"\n      fields:\n        - { name: name, label: Name, widget: string }\n        - { name: title, label: Title, widget: string } \n        - { name: url, label: URL, widget: string } \n        - { name: imageUrl, label: ImageURL, widget: string } \n```\n\n### 🔑 Configuration\n\n- [New OAuth App in Github](https://github.com/settings/developers)\n- [Install OAuth Provider in Netlify](https://app.netlify.com/)\n\n### 🏆 Run\n\n- [https://dainty-flan-38b69b.netlify.app/](https://dainty-flan-38b69b.netlify.app/)\n- [https://dainty-flan-38b69b.netlify.app/admin](https://dainty-flan-38b69b.netlify.app/admin)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnatthasath%2Fdemo-docusaurus-netlify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnatthasath%2Fdemo-docusaurus-netlify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnatthasath%2Fdemo-docusaurus-netlify/lists"}