frandieguez / frandieguez.com

This is the source code that generates my personal site and blog

Home Page:http://www.frandieguez.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fran Dieguez site logo


Netlify Status Travis CI Status Maintainability dependencies Status PRs Welcome

This repository contains the code and contents for Fran Dieguez's site, a blog about technology and topics that insterest me.

The leitmotiv of this code was to use and learn interesting technologies like React, GraphQL, Gatsby, etc.

πŸš€ Quick start

  1. Install the base tools.

Install Yarn to manage dependencies

https://yarnpkg.com/lang/en/docs/install/

Install the dependencies to work. sh yarn install

  1. Start developing.

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

    gatsby develop
  2. Open the source code and start editing!

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

    Note: There is another endpoint available at http://localhost:8000/___graphql. This is a tool you can use to experiment with querying data. Check further info at Gatsby tutorial.

🧐 What's inside?

A quick look at the top-level files and directories you'll see in a Gatsby project.

.
β”œβ”€β”€ node_modules
β”œβ”€β”€ content
β”œβ”€β”€ src
β”œβ”€β”€ .gitignore
β”œβ”€β”€ gatsby-browser.js
β”œβ”€β”€ gatsby-config.js
β”œβ”€β”€ gatsby-node.js
β”œβ”€β”€ gatsby-ssr.js
β”œβ”€β”€ LICENSE
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ package.json
└── README.md
  1. /node_modules: This directory contains all of the modules of code that your project depends on (npm packages) are automatically installed.

  2. /content: This directory contains all the markdown files with posts and all static files, like images for all the posts.

  3. /src: This directory contains all the code related what is seeing at the front-end of the site (what you see in the browser) such the site header or a page template.

  4. .gitignore: This file tells git which files it should not track / not maintain a version history for.

  5. .prettierrc: This is a configuration file for Prettier. Prettier is a tool to help keep the formatting of your code consistent.

  6. gatsby-browser.js: This file is where Gatsby expects to find any usage of the Gatsby browser APIs (if any). These allow customization/extension of default Gatsby settings affecting the browser.

  7. 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 for more detail).

  8. gatsby-node.js: This file is where Gatsby expects to find any usage of the Gatsby Node APIs (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process.

  9. gatsby-ssr.js: This file is where Gatsby expects to find any usage of the Gatsby server-side rendering APIs (if any). These allow customization of default Gatsby settings affecting server-side rendering.

  10. LICENSE: Gatsby is licensed under the MIT license.

  11. yarn.lock (See package.json below, first). This is an automatically generated file based on the exact versions of the npm dependencies that were installed for the project. (Do not change this file directly).

  12. 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.

  13. README.md: A text file containing useful reference information about your project.

πŸ’« Deploy

Deploy to Netlify

About

This is the source code that generates my personal site and blog

http://www.frandieguez.dev

License:Other


Languages

Language:JavaScript 37.3%Language:SCSS 33.6%Language:TypeScript 20.3%Language:Ruby 8.7%