Getting Started
Prerequisites
- Node.js v16.13.0
- recommended OS: Linux or Mac
Installation
Disclaimer: The following steps assume that you will keep the upstream to the base repository for continuous updates. If you don't want that, you can skip some steps and simply clone the repository and override the default remote origin
with your own.
- Clone this repository using the
--origin <name>
flag to set a remote name other thanorigin
(for exampleupstream
) - Configure your own origin remote using
git remote add origin <your repository url>
- Initial push of stable branch to your own remote:
git push origin stable
- Configure default remote to be your own remote:
git branch --set-upstream-to origin/stable
- Install dependencies:
npm ci
- Configure your individual
.env
file in the root directory (see.env.example
)
Updated 3 months ago