Minigram

We will incrementally develop a Instagram clone: Minigram. We do not have a big specification upfront. Instead, we work out enough spec to start creating value. We will then continue with cycle of mini-design and development.

Preview outcome: https://miniminygram.herokuapp.com

Create Application

rails new minigram --skip-test-unit --database=postgresql

Save Your Work

Version control is important.

git init
git add .
git commit -m "Init minigram"
git remote add origin <remote url paste here>
git push -u origin master