Skip to main content

firebase-proxy

Download

View code


This project contains a simple demo of Moralis API Proxy with the rate-limiting per a user IP.

Required Firebase services:

🚀 How to Start​

  1. Clone this repo.
  2. Install Firebase CLI globally: npm install -g firebase-tools
  3. Login to your account: firebase login
  4. Get list of your projects: firebase projects:list. If this list is empty you should add a new project. You can do it by the Firebase Console.
  5. Set your project ID: firebase use <PROJECT_ID>
  6. Copy functions/.env.example to functions/.env and set your Moralis API key in the file.

🔌 Run Locally​

  1. Install Java on your computer. Functions Emulator requires Java.
  2. Run emulators: firebase emulators:start
  3. Open http://localhost:5555/ in your browser.

🔥 Deploy to Production​

  1. Activate Firestore.
  2. Deploy: firebase deploy
  3. If you have any problem with the CORS on the production, probably you should allow unauthenticated HTTP function invocation. To allow unauthenticated invocation you must specify this at or after deployment. Here you can read more about it.