An open API service indexing awesome lists of open source software.

https://github.com/aaronrenner/formtacular

Form submission backend in elixir
https://github.com/aaronrenner/formtacular

Last synced: 11 months ago
JSON representation

Form submission backend in elixir

Awesome Lists containing this project

README

          

# Formtacular

A form submission service that collects user responses and analyzes for spam.

## Configuration

This application is configured via the following environment variables:

BUGSNAG_API_KEY = Bugsnag api key for this application
BUGSNAG_RELEASE_STAGE = Release stage for bugsnag
DATABASE_URL = The database url to connect to in production
POOL_SIZE = The number of connections in the db connection pool
PORT = The port to run the web server on.
SECRET_KEY_BASE = Phoenix secret key. Can generate using `mix phoenix.gen.secret`
SENDGRID_API_KEY = Api key for sending emails through sendgrid

## Important notes

This application must live behind at least one layer of proxy, because it does
IP address detection using the `X-Forwarded-For` header. If this is not
protected by a proxy, the app is subject to IP address spoofing.