Giter Club home page Giter Club logo

example-developer-portfolio's Introduction

Gatsby Sanity

Gatsby + Sanity Developer Portfolio

Get your development portfolio off the ground with this deployment-ready Gatsby + Sanity CMS Starter. This project ships with everything you need built into Gatsby and Sanity, just plug in your Sanity API credentials, commit, and deploy your Gatsby and Sanity site!

This starter also utilizes TailwindCSS, SCSS, and Typescript.

๐Ÿš€ Quick start

These instructions assume you already have a development environment set up with Gatsby and Sanity installed. If not, please follow their set up instructions here: Gatsby and Sanity.

  1. Clone the repository and install dependencies

    Using the command line:

    # clone the repository
    git clone https://github.com/jneterer/gatsby-sanity-developer-portfolio.git
    # install dependencies
    cd gatsby-sanity-developer-portfolio
    npm install
    cd sanity-developer-portfolio
    npm install
  2. Configure Sanity

    Now you are going to set up your Sanity CMS and start its local instance.

    # ensure you're in the sanity-developer-portfolio directory
    sanity init
    # it might ask you if you want to override the existing configuration, type 'y' for yes
    # name your project
    # use the default dataset configuration: 'y' for yes
    # deploy your graphql schema
    sanity graphql deploy
    # you can optionally enable the graphql playground but this is not required
    # start your local Sanity CMS instance
    sanity start
    # go to http://localhost:3333 and login

    If you want to go ahead and deploy your Sanity instance, you can do the following:

    # ensure you're in the sanity-developer-portfolio directory
    sanity deploy
    # provide your studio host name, can be the same as your project name
    # once Sanity has completed deploying your studio, it will give you your production sanity url
  3. Create content for your porfolio

    Here, you will create some basic content for your portfolio.

    1. Go into the About section
    2. Click the + sign to create a new About and fill out the fields
      1. Title - something like: "I'm a developer!"
      2. Description - provide a short bio about yourself, what you like to do, frameworks you use, etc.
      3. Main Image - this can be a self portrait or any other image you want to display in your About section
    3. Publish your new About
    4. Go to the Tag section
    5. Click the + sign to create a new Tag and fill out the fields
      1. Title - the title of the tag, something like: "Gatsby" or "Sanity"
      2. Description - this is a non-user facing field. Provide any description for the tag that you find helpful
      3. Selected - you can toggle this property to set whether a tag is by default selected as a filter on the home page. This should, at a minimum, be used in conjunction with the Is View All property.
      4. Is View All - defines whether a tag is the view all tag. Only one tag should have this property set to true.
    6. Publish your new Tag
    7. Go to the Project section
    8. Click the + sign to create a new Project and fill out the fields
      1. Title - the title of the project
      2. Slug - choose generate once having provided the title. This will create a url based on the title to /project/{slug}
      3. Description - a short description of the project. This will display on the project's card in the Projects section of the home page
      4. Body - a long description of the project. This will display on the project's page
      5. Github Url - the url to your project's github repo
      6. Site Url - the url to your project's site
      7. Main Image - a screenshot of your project. I recommend using the same size image for each project
      8. Tags - any tags associated with the project
    9. Publish your new Project
  4. Configure Gatsby

    In this section, you are going to connect your Gatsby project with your Sanity CMS.

    1. Rename your .env-example file to .env

    2. Replace {your-sanity-project-id} with your project id and {your-dataset-name} with your dataset name. These can both be found in the sanity-developer-portfolio/sanity.json file under the api property.

    3. Optional - set up Sanity draft previews in your Gatsby site

      1. Login to Sanity: Login
      2. Choose your Sanity project
      3. Go to settings > API
      4. Scroll to Tokens and Add New Token
      5. Give your token a label like: "Unpublished Changes Viewer" with Read permissions and Add New Token
      6. Copy the token and replace the {your-sanity-read-token} with your new read token in your .env file
    4. Start Gatsby!

    gatsby develop

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

    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.

๐Ÿง What's inside and what you should know for this project

.
โ””โ”€โ”€ sanity-developer-portfolio
    โ”œโ”€โ”€ schemas
    โ””โ”€โ”€ sanity.json
โ””โ”€โ”€ src
    โ”œโ”€โ”€ components
    โ”œโ”€โ”€ contracts
    โ”œโ”€โ”€ hooks
    โ”œโ”€โ”€ pages
    โ””โ”€โ”€ templates
โ”œโ”€โ”€ gatsby-config.js
โ””โ”€โ”€ gatsby-node.js
  1. /sanity-developer-portfolio: This directory contains your sanity CMS code.

    1. /schemas: This directory contains all schemas for your project, including the About, Project, and Tag schemas.
    2. .sanity.json: This file contains your sanity configuration, including your API credentials.
  2. /src: This directory contains all of the modules of code that your project depends on.

    1. /components This directory contains any components that might be reused in either a page, template, or other component.
    2. /contracts These are typescript interface contracts that define types for graphql queries to sanity, component props, etc.
    3. /hooks This directory contains any reusable useStaticQuery hooks to sanity.
    4. /pages This directory contains any pages that are not created programmatically in our ./gatsby-node.js file.
    5. /templates This directory contains any templates for pages created in our ./gatsby-node.js file.
  3. .gatsby-config.js: This is the main configuration file for a Gatsby site. In this file we define the title and description of the project and any plugins we use including Typescript (gatsby-plugin-typescript), Sanity (gatsby-source-sanity), TailwindCSS and SASS (gatsby-plugin-sass). (Check out the config docs for more detail).

  4. .gatsby-node.js: This is where we build all of our project files dynamically on at build time. (Check out the docs for this file here Gatsby Node APIs).

๐Ÿ’ซ Deploy

Deploy to Netlify

example-developer-portfolio's People

Contributors

jneterer avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.