Before you can start working on Buzz About, there are a few things you'll have to set up on your computer.
If you're new to Minnesota Pollinators, you may also want to read the getting started document, which gives an overview of how to set up your development environment.
Table of Contents
- Tell
npm
how to talk to GitHub Packages - Installing the Angular command-line interface
- Setting up Firebase
- Next Steps
GitHub Packages is where we keep all of the images for the website, along with some data about flowers and bees.
For npm
read from GitHub Packages, you'll need to provide it with a personal access token.
You can create a personal access token by going to https://github.com/settings/tokens and clicking "Generate new token". Under "Scopes", you'll want to check repo
, read:packages
, write:packages
, and delete:packages
:
Then, you can click "Generate token" at the bottom of the page. You'll get a token that looks like 745b0dcc742dedf87c67ff075f65eb87295e205f
. Keep that around.
Next, open the command-line and run
npm login --registry=https://npm.pkg.github.com
- When it asks for a username, enter your GitHub username.
- When it asks for a password, paste in the personal access token (not your GitHub password).
- When it asks for your email, enter your GitHub email.
Some sticking-points:
- To paste text into PowerShell, right-click once.
- On github.com/settings/tokens, the personal access token has a space after it—be careful that you don't copy that! 🙃
If you run into trouble, you can always fall back to typing the personal access code by hand.
Angular provides a CLI with commands for some common operations, like ng build
, ng serve
, ng lint
, and ng test
. (There's also ng generate
, which lets you quickly make a new component or service without having to write out the boilerplate every time.)
In order to use the Angular CLI, you'll need to install the @angular/cli
package globally:
npm install -g @angular/cli
(If you're on a Unix system, you may need sudo
.)
Firebase is a set of cloud services provided by Google. We use a few of these services in Buzz About. Notably, we're using Cloud Firestore, a database that syncs between multiple clients in real time.
When working on Buzz About, you'll want to make sure your school Google account gets added to our Firebase project. (Professor KK should be able to add you.)
Like Angular, Firebase provides a set of command-line tools. You can get these by running
npm install -g firebase-tools
The first command that you want to run is probably firebase login
. This will open a web browser prompting you to log in with your Google account.
When you're developing Buzz About locally, it isn't able to talk to the production database, so you'll need to run a local emulator.
To run the the Firestore emulator locally, type
npm run firebase:emulator
Now, if you start up a local copy of Buzz About, it should be able to talk to the emulator. Also, if you go to localhost:4000 in a browser, you'll find a nifty little database console!
We use Cypress for our end-to-end testing, with the cypress-firebase plugin to help Cypress talk to Firebase. In addition to the Firebase tools installed above, you will need a Firebase service account for end-to-end testing in Cypress. You can skip this part of the guide if you will not be using Cypress locally.
- Go to the service accounts section of the Firebase project settings.
- In the "Firebase Admin SDK" section, click the "Generate new private key" button. Then click "Generate key" on the dialog.
- It will download a JSON file. Copy this into the root of your local copy of the repo and rename it to
serviceAccount.json
. It should be ignored by git. NEVER commit this file to the repo or share it.
Now you're ready to start development! Check out the development guide for useful commands.