Micro-Learning app is a responsive web application that sends you one page per day about something you want to learn. Could be: a new Language, a random Wikipedia page, React documentation, a page from the CIA World Factbook, anything!
Clone the project
git clone https://github.com/brandeddavid/micro-learning-app.git
Change directory
cd micro-learning-app
Install required gems
bundle install
Make a .env file and populate it with guidance from the .env.example file
Run db migrations
rake db:migrate
Run the app
shotgun
Set up the test db
Run migrations on the test db (This is a one time operation)
RACK_ENV=test rake db:migrate
Run the test command
rspec