Skip to content

juntos-com-vc/juntos.com.vc

Repository files navigation

Juntos.com.vc

Build Status Code Climate Coverage Status

An open source crowdfunding platform for creative projects

Welcome to Juntos's source code repository. Our goal with opening the source code is to stimulate the creation of a community of developers around a high-quality crowdfunding platform.

You can see the software in action in http://juntos.com.vc. The official repo is https://github.com/juntos-com-vc/juntos.com.vc

Getting started

Dependencies

To run this project you need to have:

Setup the project

  • Clone the project

      $ git clone https://github.com/juntos-com-vc/juntos.com.vc.git
    
  • Enter project folder

      $ cd juntos.com.vc
    
  • Create the database.yml

      $ cp config/database.sample.yml config/database.yml
    

    Add your database credentials

  • Create a copy of .env.example called .env and add your credentials to it

      $ cp .env.example .env
    
  • Install the gems

      $ bundle install
    
  • Create the database

      $ rake db:create db:migrate
    

If everything goes OK, you can now run the project!

Running the project

Start the local server

$ rails server

Open http://localhost:3000.