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
To run this project you need to have:
-
Ruby 2.1.8
-
- OSX - Postgress.app
- Linux -
$ sudo apt-get install postgresql
- Windows - PostgreSQL for Windows
IMPORTANT: Make sure you have postgresql-contrib (Aditional Modules) installed on your system.
-
XML Library
- Linux =
$ sudo apt-get install libxml2-dev
- Linux =
-
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!
Start the local server
$ rails server
Open http://localhost:3000.