Currency conversion project using Ruby on Rails with automated testing using RSpec.
DEMO
- If you do not have Docker on your computer, follow the installation instructions on Docker's Github(more info here).
Clone the project in your directory of choice.
git clone https://github.com/jonatawilliam/jw_exchange.git
cd your-project-name
Run the Docker command for build.
docker-compose build
Now upload the the service created in Docker
docker up
Access the app by: http://localhost:3000
The project is running with Docker, if you want to run local without Docker, follow the instructions below.
- Install ruby version 2.3.0 and set it with your ruby environment manager (more info here).
- Install Postgres and start the PostgreSQL server in the foreground (more info here).
- Clone the repository and get inside it:
git clone https://github.com/jonatawilliam/jw_exchange.git
cd your-project-name
- Execute command in directory project:
rake db:create db:migrate db:seed
rails s