It creates a new Express Account when a new user signs up.
### How this function works
This function will create Stripe Express Accounts for every new user that signs up on your application.
### Requirements
* You can only create new accounts if you've signed up for Stripe Connect, which you can learn how to do at https://stripe.com/docs/connect.
### Function details
When a new user is created in Firebase, this function will create a new Stripe Express Accounts, and store its info in the collection referenced by the path provided. It will use the Firebase user ID as the id of the stored customer document. For example, for the Firebase user with uid, the function will store its associated customer in STRIPE_ACCOUNTS_COLLECTION_PATH/{uid}.
To install this function you need to enter the values of the following environment variables:
* STRIPE_SECRET_KEY: Your Stripe secret API key. See https://stripe.com/docs/keys.
* STRIPE_ACCOUNTS_COLLECTION_PATH: The collection path where the Stripe accounts are stored.
### Resources
* [Stripe Express Accounts](https://stripe.com/docs/connect/express-accounts)