LogoLogo
GitHubLeft HookDemo
1.0
1.0
  • 🥳Welcome to Frigg!
  • 👩‍💻Tutorials (Learning)
    • Quick Start Tutorial
      • Initialize with Create Frigg App (CFA)
      • Configuration
      • Start Your Frigg App
      • Connecting and Seeing Live Data
      • Updating the Integration Logic
  • 📖Reference (Information)
    • Core Concepts
    • API Module Definition and Functions
  • 🔌API Modules
    • Overview
  • 🤝Contributing
    • Overview
      • Contributor Covenant Code of Conduct
      • PULL_REQUEST_TEMPLATE
  • 📞Support
    • Contact
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
Export as PDF
  1. Tutorials (Learning)
  2. Quick Start Tutorial

Initialize with Create Frigg App (CFA)

PreviousQuick Start TutorialNextConfiguration

Last updated 9 months ago

Was this helpful?

Use npx to Create the App

Be sure to double-check that you have all the before attempting this tutorial.

Open your terminal and cd to a location where you want to install your Frigg application. Then run the following command to create a new Frigg app, replacing [my-app-integrations] with your desired app name:

npx create-frigg-app [my-app-integrations]

Note on naming: We recommend naming your Frigg app something descriptive that reflects its purpose as a microservice that powers integrations; For example, "my-app-integrations" is a good fit.

This process might take a couple of minutes to complete, but at the end of it you should see something like this in your terminal:

During the installation process, you will likely encounter warnings related to deprecated dependencies and Git initialization errors. These warnings are expected and will not impact your ability to run Frigg successfully. We are working to resolve any/all warnings, but we do not believe they indicate any acute security or functionality concerns. If you have any concerns, please contact us.

Now navigate to your newly created app directory using the following command:

cd [my-app-integrations]

Congrats! You've just successfully scaffolded and installed your Frigg app. Continue with further configuration and customization.

👩‍💻
prerequisite tools installed
Your terminal once Create Frigg App is completed