Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wazery/api
The agnostic Rails API that powers HackHub applications
https://github.com/wazery/api
Last synced: about 1 month ago
JSON representation
The agnostic Rails API that powers HackHub applications
- Host: GitHub
- URL: https://github.com/wazery/api
- Owner: wazery
- Created: 2015-08-27T16:19:54.000Z (about 9 years ago)
- Default Branch: dev
- Last Pushed: 2015-10-03T15:21:56.000Z (about 9 years ago)
- Last Synced: 2024-05-10T22:05:45.421Z (6 months ago)
- Language: Ruby
- Homepage: http://api.hackhub.io
- Size: 1.01 MB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
[![Build Status](http://104.131.207.101/api/badge/github.com/wazery/api/status.svg?branch=master)](http://104.131.207.101/github.com/wazery/api)
![HackHub Logo](https://raw.githubusercontent.com/wazery/api/dev/public/images/logo.png?token=AActgZWd9j8UwdwUXUndWIWbbMVv8f2Bks5WEqt1wA%3D%3D)
# HackHub Agnostic Rails API
The agnostic Rails API that powers the HackHub Chrome extension, Angular web and mobile applications.# Local Installation
1. Clone the repo
2. Start MongoDB daemon
3. Start Redis server
4. Create your `config/secrets.yml` config file
5. Start the Rails server via `rails server or rails s`# Secrets.yml
You Should create a file under `config` directory for your application secrets. It should conform to the following style:```yml
development: &development
secret_key_base: tokenproduction:
secret_key_base: tokentest:
<<: *developmentgithub_client_id: token
github_client_secret: token```