On Windows, the following stack is recommended:
- nvm-windows for installing node
- Git for Windows sets up a Bash prompt
- PostgreSQL for Windows
nvm install latestwindows-build-tools will install the tools needed to build node packages. To install it, run the following in a PowerShell with Administrative permissions.
npm config --global set msvs_version 2017
npm install --global --production windows-build-toolsOn Mac, use Homebrew to install all the prerequisites:
brew install nvm postgresql
brew services start postgresql
nvm install latestOne-time database setup.
createdb riot_hackathonStart the development server.
npm run devSanity check that the server is running: http://localhost:3000/status.