github.com/iron-io/functions@v0.0.0-20180820112432-d59d7d1c40b2/doc.go (about)

     1  /*
     2  IronFunctions daemon
     3  
     4  Refer to detailed documentation at https://github.com/iron-io/functions/tree/master/docs
     5  
     6  Environment Variables:
     7  DB_URL
     8  The database URL to use in URL format. See [Databases](databases/README.md) for more information. Default: BoltDB in current working directory `bolt.db`.
     9  
    10  MQ_URL
    11  The message queue to use in URL format. See [Message Queues](mqs/README.md) for more information. Default: BoltDB in current working directory `queue.db`.
    12  
    13  API_URL
    14  The primary IronFunctions API URL to that this instance will talk to. In a production environment, this would be your load balancer URL.
    15  
    16  PORT
    17  Sets the port to run on. Default: `8080`.
    18  
    19  NUM_ASYNC
    20  The number of async runners in the functions process (default 1).
    21  
    22  LOG_LEVEL
    23  Set to `DEBUG` to enable debugging. Default: INFO.
    24  */
    25  package main