0.0.0-2cb7418 • Published 22 days ago

@devtion/backend v0.0.0-2cb7418

Weekly downloads
-
License
MIT
Repository
github
Last release
22 days ago
This library provides everything needed to configure, deploy and manage the infrastructure required to run one or more Phase 2 Trusted Setup ceremonies.

Launching the ready-to-run customized scripts everyone could handle whatever is needed to accomplish the users authentication, ceremony setup, coordination and finalization. You could count on the combination of services provided by the far most popular cloud solutions in the market, as AWS for S3 Storage and GCP Firebase for Authentication, Firestore DB and, Cloud Functions services.

Components Diagram

🛠 Installation

Prerequisites

  • Node.js version 16.0 or higher.
  • Yarn version 3.5.0 or higher.
  • A Firebase Application w/ active billing (Blaze Plan) in order to support Cloud Functions deployment.
  • Follow the Installation and Usage guide.
  • Generate and store a configuration file with your service account's credentials as stated in this documentation inside the packages/backend/serviceAccountKey.json file.
  • Rename the .firebaserc production project alias with your Firebase project name.

Navigate to backend package by running

cd packages/backend

Copy the .default.env file as .env:

cp .env.default .env

And add your environment variables.

📜 Usage

Authorization

Login using your Google Account to Firebase CLI running

yarn firebase:login

Run the following to logout

yarn firebase:logout

Initialization

Initialize a new Firebase project interactively

yarn firebase:init

Deployment

AWS Infrastructure

  1. Login or create a new AWS Account.
    • The AWS free tier account will cover a good number of requests for ceremonies but there could be some costs based on your ceremony circuits size.
  2. Create an access key for a user with Admin privileges (NOT ROOT USER)
  3. Setup the awscli (docs) and add the keys for this user.
  4. Install terraform (docs)
  5. Decide on an AWS region (by default this is us-east-1) - if you want to change you will need to do the following:
    1. update aws/lambda/index.mjs (exact line) to the new region
    2. update main.tf (exact line) to the new region
  6. zip the Lambda folder:
    1. cd lambda
    2. zip -r ../lambda.zip .
  7. Run terraform:
    1. terraform init
    2. terraform plan
    3. terraform apply
    4. terraform output secret_key
      • To print the secret access key for the IAM user
    5. Store the other values (sns_topic_arn etc.)
      • These will be needed for the .env file configuration

The IAM user created with the steps above can be used for all p0tion's features.

Firebase

Deploy the current configuration to the prod project running

yarn firebase:deploy

To deploy only the latest Cloud Functions run

yarn firebase:deploy-functions

To deploy only the latest Firestore configuration and rules run

yarn firebase:deploy-firestore

Local Emulator

Firebase provides a Local Emulator Suite as a set of advanced dev-tools w/ a rich user-interface to build and test apps locally using Firebase services as Cloud Functions, Firestore and Authentication.

Prerequisites

  • You will need Java JDK version 11 or higher to run the Firebase Local Emulator.

To start the Emulator run

yarn emulator:serve

To emulate only Cloud Functions service run

yarn emulator:serve-functions

To run the Emulator shell in a new command line window run

yarn emulator:shell

To run tests (e2e/unit) locally in the Emulator run

yarn test:emulator