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
- Host: GitHub
- URL: https://github.com/aaronrenner/formtacular
- Owner: aaronrenner
- Created: 2017-01-30T06:52:01.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-08T04:58:17.000Z (over 9 years ago)
- Last Synced: 2025-07-06T00:08:03.776Z (11 months ago)
- Language: Elixir
- Size: 87.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.