Git Product home page Git Product logo

compass's Introduction

Welcome to Quill!

Quill is a web application that provides interactive writing activities.

Read about our mission.


Code Climate Build Status Coverage Status Dependency Status

Participating via Cofactor

Quill is built and maintained by a core team and volunteers. Contributors are organized into teams on Cofactor. Cofactor is a tool for collaboartively building open source projects.

If you have ideas on how to improve Quill, or just want to help, please join us on our Cofactor page.

Using Cofactor, you can communicate via the following channels:

  1. Chat/IRC. Join our Gitter chat room for immediate discussions. Gitter is now building an IRC bridge.
  2. Mailing List. Use the mailing list to discuss ideas, questions, and project direction.
  3. GitHub Issues. Use GitHub issues to discuss particular features under development.
  4. Google Hangouts. Video chats are organized through the Gitter chat.

Contributing

  1. Check our Github issue queue for ideas on how to help.
  2. Make sure your code follows Ruby and project conventions.
  3. Make sure you don't have any IDE / platform specific files committed. i.e. .DS_Store, .idea, .project (consider adding these to a global gitignore).
  4. Before commiting, run rake, make sure all tests pass.
  5. Introduce changes with pull requests.

Read our guide to contributing for more information.

Building with Docker

You can run Compass locally by using a Docker Image and a Virtual Machine. Read the instructions

Building with Manual Install

If you are having any trouble installing, please post your questions to the "Questions" mailing list in Cofactor.

Note: Unless stated otherwise, all commands assume that your current working directory is the Quill application root.

  1. Setup ruby 2.1.1. You can use RVM or rbenv to achieve this, rbenv is recommended (https://github.com/sstephenson/rbenv). Here are the steps for installing os OS X:

    Install homebrew (if you haven't already): http://brew.sh/

    Install rbenv:

    brew update
    brew install rbenv ruby-build

    Install ruby:

    rbenv install 2.1.1

    Set it to your default ruby:

    rbenv local 2.1.1

    Note: you may need to run brew upgrade ruby-build if 2.1.1 is unavailable

  2. Install dependencies.

    bundle install
    

    Note: This may require you to install missing system packages using your system package handler (brew, apt, yum, etc.).

    Ensure that Postgres is installed. On Macs:

    brew install postgres
    initdb /usr/local/var/postgres
    postgres -D /usr/local/var/postgres & #start the server
    createuser -s -r postgres
    psql postgres # if this works, you win

    Update submodules

    git submodule init
    git submodule update
  3. Set up your database configuration by creating and editing the file config/database.yml with appropriate connection information. Example information is provided below.

    development:
        host: localhost
        adapter: postgresql
        encoding: unicode
        database: <database_name>
        pool: 5
        username: my_name
        password: my_pass
    
  4. Build the database structure.

    sudo service postgres start   # may change depending on your OS
    
    rake db:create
    rake db:structure:load
  5. Seed data into the database.

    rake db:seed
    

    If you are granted access to a Heroku environment, you can also capture a database directly from that. Instructions below are for example only.

    heroku pg:capture --app <app>
    curl -o ~/latest.dump $(heroku pgbackups:url --app <app>)
    pg_restore --verbose --clean --no-acl --no-owner -h localhost -U <your_db_user> -d <database_name> ~/latest.dump
    

    Note: <app> is the name of the Quill deployment on Heroku you want to retrieve data from.

  6. Ensure the following parameters are in your environment:

    JRUBY_OPTS=--1.9
    APP_SECRET=your-secret-key
    HOMEPAGE_CHAPTER_ID=1
    

    Setting these up varies on your platform. You can export them in your bash config (not recommended) or use a config file provided by either RVM (.ruby-env) or rbenv (.rbenv-vars). Please refer to their respective documentations if you need more information.

  7. Start the app, make sure it works.

    rails server
    curl localhost:3000

Benchmarking

user = User.first
user.refresh_token!
token = user.token

$ ab -H "Authorization: Basic `echo TOKEN_GOES_HERE: | base64`==" -n 5 -c 1 http://www.quill.org/profile

Help

Request help on Gitter or on our Mailing List.

compass's People

Contributors

brifishjones avatar ccowdery avatar chrisjeon avatar circuitmeister avatar daymun avatar edinavath avatar jake-bladt avatar jessehorne avatar melissacarbone avatar mzemel avatar paigeponzeka avatar petergault avatar quinn avatar ryannovas avatar sarony avatar seanmacisaac avatar stevie400 avatar tmrudick avatar tomfbiz avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.