https://github.com/nicolasdra/portfolio
portfolio site
https://github.com/nicolasdra/portfolio
Last synced: 10 months ago
JSON representation
portfolio site
- Host: GitHub
- URL: https://github.com/nicolasdra/portfolio
- Owner: NicolasdRa
- Created: 2021-09-12T08:11:59.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-01T19:54:10.000Z (almost 3 years ago)
- Last Synced: 2025-08-24T14:32:58.686Z (11 months ago)
- Language: TypeScript
- Size: 49.6 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
**Gatsby Skeleton** is an (almost) barebones Gatsby v3 starter that intends to save the user the hassle of having to set up everything every time and start with development right away.
It includes TypeScript (even for the `gatsby-*` files!) along ESLint, Prettier, stylelint, simple-git-hooks and lint-staged.
For styling, styled-components is used. Everything already set up.
## :zap: Features
**dependencies**:
├── gatsby-plugin-image
├── gatsby-plugin-react-helmet
├── gatsby-plugin-sharp
├── gatsby-plugin-sitemap
├── gatsby-plugin-styled-components
├── gatsby-plugin-svgr
├── gatsby-source-filesystem
├── gatsby-transformer-sharp
├── normalize.css
├── react-helmet
└── styled-components
**devDependencies**:
├── eslint
├── lint-staged
├── plop
├── prettier
├── simple-git-hooks
├── stylelint
└── typescript
## 🚀 Quick start
1. **Create a Gatsby site.**
Use the Gatsby CLI to create a new site, specifying the gatsby-skeleton starter.
```sh
gatsby new my-project https://github.com/msallent/gatsby-starter-skeleton/
```
1. **Start developing.**
Navigate into your new site’s directory and start it up.
```sh
cd my-project/
yarn dev
```
1. **Open the source code and start editing!**
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](https://www.gatsbyjs.org/tutorial/part-five/#introducing-graphiql)._
Open the `my-project` directory in your code editor of choice and edit `src/pages/index.tsx`. Save your changes and the browser will update in real time!