{"id":19832168,"url":"https://github.com/petrnikolas/staticfy","last_synced_at":"2025-10-13T02:07:41.857Z","repository":{"id":43491055,"uuid":"152630450","full_name":"PetrNikolas/staticfy","owner":"PetrNikolas","description":"Basic starter kit for static sites based on Gatsby.js. (React, Gatsby, TypeScript, TSLint, Lint-Staged, Husky, Prettier, Stylelint, Spectre.css, PostCSS, Sass)","archived":false,"fork":false,"pushed_at":"2023-01-03T17:12:11.000Z","size":6982,"stargazers_count":7,"open_issues_count":28,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-01T16:42:16.030Z","etag":null,"topics":["gatsby","gatsby-starter","gatsby-starter-kit","gatsbyjs","husky","postcss","react","reactjs","sass","spectre","starter-kit","starter-project","starter-template","starterkit","static-site","stylelint","tslint","typescript"],"latest_commit_sha":null,"homepage":"","language":"CSS","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/PetrNikolas.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}},"created_at":"2018-10-11T17:32:45.000Z","updated_at":"2020-02-18T05:11:30.000Z","dependencies_parsed_at":"2023-02-01T08:02:10.105Z","dependency_job_id":null,"html_url":"https://github.com/PetrNikolas/staticfy","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/PetrNikolas/staticfy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PetrNikolas%2Fstaticfy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PetrNikolas%2Fstaticfy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PetrNikolas%2Fstaticfy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PetrNikolas%2Fstaticfy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PetrNikolas","download_url":"https://codeload.github.com/PetrNikolas/staticfy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PetrNikolas%2Fstaticfy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279014006,"owners_count":26085343,"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-10-13T02:00:06.723Z","response_time":61,"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":["gatsby","gatsby-starter","gatsby-starter-kit","gatsbyjs","husky","postcss","react","reactjs","sass","spectre","starter-kit","starter-project","starter-template","starterkit","static-site","stylelint","tslint","typescript"],"created_at":"2024-11-12T11:36:40.109Z","updated_at":"2025-10-13T02:07:41.823Z","avatar_url":"https://github.com/PetrNikolas.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Staticfy\n\nBasic starter kit for static sites based on Gatsby.js.\n\n## 🚀 Quick start\n\n**Start developing.**\n\n  Navigate into your new site’s directory and start it up.\n\n  ```sh\n  cd my-site/\n  gatsby develop\n  ```\n\n**Open the source code and start editing!**\n\n  Your site is now running at `http://localhost:8000`!\n\n  *Note: You'll also see a second link: `http://localhost:8000/___graphql`. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the [Gatsby tutorial](https://www.gatsbyjs.org/tutorial/part-five/#introducing-graphiql).*\n\n  Open the `my-site` directory in your code editor of choice and edit `src/pages/index.js`. Save your changes and the browser will update in real time!\n\n## 🧐 What's inside\n\n### Features\n\n- Gatsby\n- TypeScript\n- Sass, Spectre.css, PostCSS\n- TSLint\n- Prettier\n- Stylelint\n- Lint-staged, Husky, Git Hooks\n\n### Project structure\n\nA quick look at the top-level files and directories you'll see in a Gatsby project.\n\n    .\n    ├── node_modules\n    ├── src\n    ├── .gitignore\n    ├── .prettierrc\n    ├── gatsby-browser.js\n    ├── gatsby-config.js\n    ├── gatsby-node.js\n    ├── gatsby-ssr.js\n    ├── LICENSE\n    ├── package-lock.json\n    ├── package.json\n    ├── README.md\n    └── yarn.lock\n\n  **`/node_modules`**: This directory contains all of the modules of code that your project depends on (npm packages) are automatically installed.  \n\n  **`/src`**: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. `src` is a convention for “source code”.\n\n  **`.gitignore`**: This file tells git which files it should not track / not maintain a version history for.\n\n  **`.prettierrc`**: This is a configuration file for [Prettier](https://prettier.io/). Prettier is a tool to help keep the formatting of your code consistent.\n\n  **`gatsby-browser.js`**: This file is where Gatsby expects to find any usage of the [Gatsby browser APIs](https://www.gatsbyjs.org/docs/browser-apis/) (if any). These allow customization/extension of default Gatsby settings affecting the browser.\n\n  **`gatsby-config.js`**: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins you’d like to include, etc. (Check out the [config docs](https://www.gatsbyjs.org/docs/gatsby-config/) for more detail).\n\n  **`gatsby-node.js`**: This file is where Gatsby expects to find any usage of the [Gatsby Node APIs](https://www.gatsbyjs.org/docs/node-apis/) (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process.\n\n  **`gatsby-ssr.js`**: This file is where Gatsby expects to find any usage of the [Gatsby server-side rendering APIs](https://www.gatsbyjs.org/docs/ssr-apis/) (if any). These allow customization of default Gatsby settings affecting server-side rendering.\n\n  **`LICENSE`**: Gatsby is licensed under the MIT license.\n\n  **`package-lock.json`** (See `package.json` below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. **(You won’t change this file directly).**\n\n  **`package.json`**: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc). This manifest is how npm knows which packages to install for your project.\n\n  **`README.md`**: A text file containing useful reference information about your project.\n\n  **`yarn.lock`**: [Yarn](https://yarnpkg.com/) is a package manager alternative to npm. You can use either yarn or npm, though all of the Gatsby docs reference npm.  This file serves essentially the same purpose as `package-lock.json`, just for a different package management system.\n\n## Deployment\n\nFor deployment you can use Gitlab CI. In project are two files - sample `.gitlab-ci.yml` and for S3 deploy `.gitlab-ci-s3.yml`.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetrnikolas%2Fstaticfy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpetrnikolas%2Fstaticfy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetrnikolas%2Fstaticfy/lists"}