Send Online Top-up. Instant Account Recharge
Recharge your account on the Aeternity Testnet
Configuring Faucet application via environment variable:
FAUCET_ACCOUNT_PRIV_KEYThe account that faucet aepp will top off the account. (Required)TOPUP_AMOUNTThe amount of tokens that the faucet application will place into your account. (Default: 5AE)SPEND_TX_PAYLOADValue to use to fill the payload for the transactions (Default:Faucet Tx)NODE_URLURL of the node that the faucet aepp is using. (Default: 'https://testnet.aeternity.io')EXPLORER_URLURL of the explorer app (Default: 'https://testnet.aeternal.io')SUPPORT_EMAILEmail to display for support requests (Default:aepp-dev@aeternity.com)
TELEGRAM_API_TOKENthe token of the telegram bot, if not set telegram integration will be disabledTELEGRAM_CHAT_IDthe chat id to send notifications to
SERVER_LISTEN_ADDRESSwhich address to listen to (Default:0.0.0.0)SERVER_LISTEN_PORTon which port to listen (Default:5000)
to install, build and generate required files locally run
make build from the root of the project.
To work with front-end or back-end only instead:
- Run
pip install -r requirements.txtto install the python dependencies
- Run
npm ifrom the root of the project - Run
npm run devto start webpack
Notes:
- All the Front-End resources are in
/src/ - Run
npm run prodto compile assets for production - Compiled assets (
prodordev) will be created in/assets/ - Index file from
srcwill be created in/templates/index.html