A Gatsby theme for techies who love terminal / command line / bash like portfolio.
A Gatsby theme for techies who love terminal / command line / bash like portfolio.
To install this theme, you will need a starter Gatsby site. Make sure you have Gatsby CLI installed.
Create a new site using Gatsby CLI:
gatsby new my-app https://github.com/gatsbyjs/gatsby-starter-hello-world
Above will create a new site using a “Hello world starter from Gatsby”
Currently, the theme has no starter for itself so, you will need to install the theme manually.
In your my-app
install the theme.
npm i git+https://github.com/ashiishme/gatsby-theme-terminal.git
Open gatsby-config.js
file & add the theme in the plugin array.
module.exports = {
...
plugins: [`gatsby-theme-terminal`],
}
Delete the pages
directory ( including the index.js
file ) from src
directory as everything will load from theme unless you want to override ( Theme shadowing )
gatsby develop
It should load the terminal theme ready.