aspencer8111 / coronavirusapi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README

Development Environment Requirements

  • Ruby 2.7.0 (If you have trouble switching ruby versions with Bundler, the application runs fine with Ruby 2.5.5 - just update the version locally in your Gemfile)
  • MySQL
  • yarn (https://classic.yarnpkg.com/en/docs/install)
  • bundle (gem install bundler)

Setting up a development environment

1.) Clone the repository from https://github.com/coronavirusapi/coronavirusapi

2.) Create a MySQL user for the application to use.

2b.) If you want an application specific user (recommended), create databases coronavirusapi_development, coronavirusapi_production, and coronavirusapi_test and grant the MySQL user permissions on those tables.

3.) Copy db/database.yml.example to db/database.yml and update the file with your database credentials

4.) Import the database dump from db/dump2.sql using the command:

mysql -u <mysql-username> -p coronavirusapi_development < ~/projects/cvirusapi/coronavirusapi/db/dump.sql

5.) Run bundle exec rails db:migrate RAILS_ENV=development

6.) Run bundle exec rails s to start the development server

7.) Access the application at localhost:3000

locally, you also need to run redis. If not, you need to use this url: http://localhost:3000/?reload=y

About

License:MIT License


Languages

Language:TSQL 94.3%Language:HTML 3.6%Language:Ruby 1.8%Language:CSS 0.2%Language:JavaScript 0.1%