Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uasi/tev
Tweet Entity Viewer
https://github.com/uasi/tev
Last synced: 17 days ago
JSON representation
Tweet Entity Viewer
- Host: GitHub
- URL: https://github.com/uasi/tev
- Owner: uasi
- Created: 2016-02-07T15:10:59.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-05T14:14:58.000Z (over 8 years ago)
- Last Synced: 2024-11-05T20:50:23.392Z (2 months ago)
- Language: Elixir
- Homepage: https://tev.opts.io
- Size: 185 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tev
To start your Phoenix app:
1. Install dependencies with `mix deps.get`
2. Create and migrate your database with `mix ecto.create && mix ecto.migrate`
3. Start Phoenix endpoint with `mix phoenix.server`Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
Ready to run in production? Please [check our deployment guides](http://www.phoenixframework.org/docs/deployment).
## Environment variables
Required:
- `APP_HOSTNAME` - e.g. `tev.example.com`
- `CRYPTO_AES256_KEY` - 32-byte binary string, Base64-encoded
- `DATABASE_URL` - PostgreSQL database URL
- `SECRET_KEY_BASE` (prod only) - string generated by `mix phoenix.gen.secret`
- `TWITTER_API_KEY`
- `TWITTER_API_SECRET`Optional (general):
- `ADMIN_ID` - comma-separated Twitter user IDs (numeric ones)
- `DATABASE_USE_SSL` - set to `1` if SSL should be used to connect to the database
- `HTTPS_REVERSE_PROXY` - set to `1` if the app is behind an HTTPS-enabled reverse proxyOptional (for tuning):
- `DISPATCHER_MAX_OVERFLOW`
- `DISPATCHER_POOL_SIZE`
- `DISPATCHER_TIMEOUT_MS`
- `FETCHER_MAX_OVERFLOW`
- `FETCHER_POOL_SIZE`
- `FETCHER_TIMEOUT_MS`Optional (for debugging):
- `DISABLE_CRON_JOBS` - set to `1` to disable jobs including periodic fetches
## Learn more
* Official website: http://www.phoenixframework.org/
* Guides: http://phoenixframework.org/docs/overview
* Docs: http://hexdocs.pm/phoenix
* Mailing list: http://groups.google.com/group/phoenix-talk
* Source: https://github.com/phoenixframework/phoenix