Prerequisites
Before we get to the installation, make sure you have the following prerequisites installed.
- You'll need at least 10-15GB free. I know. Docker is a real hog.
- Download and install Docker Desktop.
What is Docker? Docker is a popular platform for shipping and running self-contained applications. Rather than requiring you to install numerous different tools and applications on your own machine and keep them up to date, Docker "containerizes" them and lets you forget about the details of an application. In our case, we've dockerized a lot of the application, but not all - hence the need to install the things here.
- Download the latest version of generatedata. For this, if you're a developer you can either
git clone
the repo and check out the currentmaster
branch, or download the latest official version. Master is generally stable, but it's not guaranteed - so downloading the latest zip/tar is probably your safest bet. - Install node.
- Install nvm.
- Install yarn:
npm install --global yarn
And that's it! Now let's customize the app to work exactly how you want.