{"id":19865070,"url":"https://github.com/glweems/stjo","last_synced_at":"2025-07-24T22:13:46.349Z","repository":{"id":44274818,"uuid":"236419703","full_name":"glweems/stjo","owner":"glweems","description":"air bnb rental listing","archived":false,"fork":false,"pushed_at":"2023-07-07T20:44:29.000Z","size":1756,"stargazers_count":2,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-01T00:32:30.186Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/glweems.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}},"created_at":"2020-01-27T04:32:39.000Z","updated_at":"2020-04-11T17:13:58.000Z","dependencies_parsed_at":"2025-01-11T15:46:08.369Z","dependency_job_id":null,"html_url":"https://github.com/glweems/stjo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/glweems/stjo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glweems%2Fstjo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glweems%2Fstjo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glweems%2Fstjo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glweems%2Fstjo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/glweems","download_url":"https://codeload.github.com/glweems/stjo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glweems%2Fstjo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266911081,"owners_count":24005041,"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-24T02:00:09.469Z","response_time":99,"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-12T15:20:54.076Z","updated_at":"2025-07-24T22:13:46.311Z","avatar_url":"https://github.com/glweems.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.gatsbyjs.org\"\u003e\n    \u003cimg alt=\"Gatsby\" src=\"https://www.gatsbyjs.org/monogram.svg\" width=\"60\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\u003ch1 align=\"center\"\u003e\n  Typescript Starter with the bare essentials needed for a Gatsby site\n\u003c/h1\u003e\n\n## 🚀 Quick start\n\n1.  **Create a Gatsby site.**\n\n    Use the Gatsby CLI to create a new site, specifying the hello-world starter.\n\n    ```sh\n    # create a new Gatsby site using the hello-world starter\n    gatsby new my-hello-world-starter https://github.com/hdorgeval/gatsby-starter-ts-hello-world\n    ```\n\n1.  **Start developing.**\n\n    Navigate into your new site’s directory and start it up.\n\n    ```sh\n    cd my-hello-world-starter/\n    npm start\n    ```\n\n1.  **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-hello-world-starter` directory in your code editor of choice and edit `src/pages/index.tsx`. Save your changes and the browser will update in real time!\n\n## 🎓 Learning Gatsby\n\nLooking for more guidance? Full documentation for Gatsby lives [on the website](https://www.gatsbyjs.org/). Here are some places to start:\n\n- **For most developers, we recommend starting with our [in-depth tutorial for creating a site with Gatsby](https://www.gatsbyjs.org/tutorial/).** It starts with zero assumptions about your level of ability and walks through every step of the process.\n\n- **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.org/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar.\n\n## CSS file usage\n\nRun script:\n\n```sh\nnpm run css-watch\n```\n\nThis will automatically create/update a `.d.ts` typings file whenever you add or modify a `.css` file.\n\nThis will enable you to import `.css` file in any `.tsx` file, like for example:\n\n```sh\nimport styles from './index.module.css';\n```\n\nPlus added support of IntelliSense in VSCode ;\n\nTo update/create all `.css.d.ts` files in one shot:\n\n```sh\nnpm run create-types-for-css-modules\n```\n\n## SASS file usage\n\nRun script:\n\n```sh\nnpm run sass-watch\n```\n\nThis will automatically create/update a `.d.ts` typings file whenever you add or modify a `.scss` file.\n\nThis will enable you to import `.scss` file in any `.tsx` file, like for example:\n\n```sh\nimport styles from './index.module.scss';\n```\n\nPlus added support of IntelliSense in VSCode ;\n\nTo update/create all `.scss.d.ts` files in one shot:\n\n```sh\nnpm run create-types-for-sass-modules\n```\n\n## 💫 Deploy\n\n[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/hdorgeval/gatsby-starter-ts-hello-world)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglweems%2Fstjo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglweems%2Fstjo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglweems%2Fstjo/lists"}