{"id":20942188,"url":"https://github.com/getstation/getstation.github.io","last_synced_at":"2025-05-13T23:32:35.107Z","repository":{"id":66202683,"uuid":"157377869","full_name":"getstation/getstation.github.io","owner":"getstation","description":"https://getstation.com/","archived":false,"fork":false,"pushed_at":"2023-12-13T09:53:26.000Z","size":16378,"stargazers_count":26,"open_issues_count":3,"forks_count":12,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-02T10:05:56.434Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/getstation.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":"2018-11-13T12:36:57.000Z","updated_at":"2025-03-19T00:03:24.000Z","dependencies_parsed_at":"2023-12-13T10:48:03.544Z","dependency_job_id":null,"html_url":"https://github.com/getstation/getstation.github.io","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getstation%2Fgetstation.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getstation%2Fgetstation.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getstation%2Fgetstation.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getstation%2Fgetstation.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getstation","download_url":"https://codeload.github.com/getstation/getstation.github.io/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254043218,"owners_count":22004912,"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","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-18T23:24:19.124Z","updated_at":"2025-05-13T23:32:30.085Z","avatar_url":"https://github.com/getstation.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Station website\n\n**Note:** This project uses [Gatsby v2](https://www.gatsbyjs.org/).\n\n## ⚡️ Features\n\n- **css-in-js** with Emotion: [website](https://emotion.sh/) - [plugin doc](https://www.gatsbyjs.org/packages/gatsby-plugin-emotion/?=emoti)\n- API Prismic: [website](https://prismic.io/) - [plugin doc](https://www.gatsbyjs.org/packages/gatsby-source-prismic/?=prismic)\n- React-Helmet: [plugin doc](https://www.gatsbyjs.org/packages/gatsby-plugin-react-helmet/?=gatsby-plugin-react-helmet)\n- Offline: [plugin doc](https://www.gatsbyjs.org/packages/gatsby-plugin-offline/?=gatsby-plugin-offline)\n- Sharp image processing library: [plugin doc](https://www.gatsbyjs.org/packages/gatsby-plugin-sharp/?=gatsby-plugin-sharp)\n- Sitemap: [plugin doc](https://www.gatsbyjs.org/packages/gatsby-plugin-sitemap/?=sitemap)\n- Polyfill.io: [plugin doc](https://www.gatsbyjs.org/packages/gatsby-plugin-polyfill-io/)\n- Storybook: [website](https://storybook.js.org/)\n\n## 🚀 Prerequisites\n\n1.  **Install the Gatsby CLI**\n\n    The Gatsby CLI helps you create new sites using Gatsby starters (like this one!)\n\n    ```sh\n    # install the Gatsby CLI globally\n    npm install -g gatsby-cli\n    ```\n\n1.  **Node version manager**\n\n    Install [NVM](https://github.com/creationix/nvm) to manage its version of Node:\n\n    ```sh\n    curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash\n    ```\n\n    **In the project**, install and use the current version of Node:\n\n    ```sh\n    # Installs the node version specified in the .nvmrc\n    nvm install\n    # Switches to the node version specified in the .nvmrc\n    nvm use\n    ```\n\n    (Optional but **highly recommended**) Install [AVN](https://github.com/wbyoung/avn) to avoid having to run nvm use every time you open the project.\n\n1.  **Install Yarn**\n\n    Go to\n    [https://yarnpkg.com/docs/install](https://yarnpkg.com/docs/install/#mac-tab)\n\n    ```sh\n    brew install yarn --ignore-dependencies\n    ```\n\n1.  **Configuration and API Keys**\n\n    Create a `.env.development` at the root of the project.\n\n    ```sh\n    # Prismic API_KEY\n    API_KEY=XXXXX_YOUR_TOKEN_XXXXX\n    \n    # GraphQL\n    GRAPHQL_URI=http://127.0.0.1:4001/graphql\n\n    # Firebase\n    FIREBASE_API_KEY=xxx\n    FIREBASE_AUTH_DOMAIN=xxx\n    ```\n\n## 🔨 Commands\n\n1.  **Download dependencies**\n\n    ```sh\n    yarn\n    ```\n\n1.  **Start developing**\n\n    Navigate into your new site’s directory and start it up.\n\n    ```sh\n    npm run develop\n    ```\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\n1.  **Build**\n\n    ```sh\n    npm run build\n    ```\n\n1.  **Serve Build**\n\n    ```sh\n    gatsby serve\n    ```\n\n1.  **Launch Storybook**\n    ```sh\n    npm run storybook\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetstation%2Fgetstation.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgetstation%2Fgetstation.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetstation%2Fgetstation.github.io/lists"}