Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waterlink/ww
WikiWords in elixir
https://github.com/waterlink/ww
Last synced: 30 days ago
JSON representation
WikiWords in elixir
- Host: GitHub
- URL: https://github.com/waterlink/ww
- Owner: waterlink
- License: mit
- Created: 2015-08-27T10:11:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-02T22:20:22.000Z (over 9 years ago)
- Last Synced: 2024-10-16T07:16:08.677Z (3 months ago)
- Language: Elixir
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# WW - WikiWords
Personal WikiWords web application in Elixir
## Development
`mix deps.get` - to fetch all dependencies
`mix test` - to run tests
`iex -S mix` - to run interactive elixir and start server (CTRL+C twice to exit it)NOTE: to run tests and run development server, you would need to set your AWS
credentials as environment variables:```bash
export AWS_ACCESS_KEY_ID="your development AWS access key id with r/w access to S3"
export AWS_SECRET_ACCESS_KEY="your development AWS secret access key with r/w access to S3"
```## Deploy to Heroku
To deploy to heroku, you need to provide such environment variables with
`heroku config:set`:```
BUILDPACK_URL: https://github.com/HashNuke/heroku-buildpack-elixir.gitAWS_ACCESS_KEY_ID: your deployment AWS access key id with r/w access to S3
AWS_SECRET_ACCESS_KEY: your deployment AWS secret access key with r/w access to S3AUTH_COOKIE: your unique random long authentication cookie here
AUTH_PASSWORD: your preferred password to get an auth cookie set
```## Contributors
- [waterlink](https://github.com/waterlink) - Oleksii Fedorov, creator, maintainer