Skip to content

GoodPraxis/ts-gatsby-starter

Repository files navigation

Good Praxis

Good Praxis' Gatsby minimal TypeScript starter

🚀 Quick start (when creating a new project)

  1. Create a Gatsby site.

    Use the Gatsby CLI to create a new site, specifying the minimal TypeScript starter.

    # create a new Gatsby site using the minimal TypeScript starter
    npx gatsby new my-gatsby-site [email protected]:GoodPraxis/ts-gatsby-starter.git
  2. Start developing.

    Navigate into your new site’s directory and start it up.

    cd my-gatsby-site/
    npm run develop
  3. Open the code and start customizing!

    Your site is now running at http://localhost:8000!

    Edit src/pages/index.tsx to see your site update in real-time!

🚀 Quick start (when working on an existing project)

  1. Clone repository

    Clone the git repository like any other project

  2. Install dependencies

    Run NPM install to setup the project

    npm install
  3. Start developing.

    Run Gatsby

    npm run develop

    or, if you have the Gastby CLI installed:

    gatsby develop
  4. Open the code and start customizing!

    Your site is now running at http://localhost:8000!