localeai.github.io

Gatsby

Locale.ai Official Website

Setting up for development

GitHub pages doesn’t allow the default org/user gh-pages to be deployed from any other brach other than master. So, the master branch contains the production build of the entire website. The development of the website and the actual source code is in the development branch.

Prerequisites

Make sure you have the latest version of Node, NPM and Gatsby CLI installed.
To install Gatsby-CLI run npm i -g gatsby-cli

Clone the repo

$ git clone git@github.com/localeai/localeai.github.io

Install all the dependencies

$ cd localeai.github.io
$ npm install

Run dev server

$ gatsby develop

Create a production build

$ gatsby build

### By default the command deploys the public sub-directory, where the production build is dumped to master branch of the GitHub repository

$ npm run deploy