Onboarding
This guide covers setting up the production and test environment, as well as deploying changes.
Setting up the environment
Dependencies
# Assuming npm & node are already installed.
$ npm install -g typescriptCreating a local deployment
$ git clone git@github.com:CovEducation/Website.git
$ cd Website$ pwd
> some/path/Website
# Assuming ~/Downloads is where you placed the credentials.
$ cp ~/Downloads/.env* packages/server
$ cp ~/Downloads/service_account.json packages/server
# Verify that the files are there.
$ ls -al packages/server
>> .env
>> .env-prod
>> .env-test
>> service_account.json
>> ...Let's build & run
Hot Reloading
Last updated