Skip to content

leonlevitate/chitter-challenge

 
 

Repository files navigation

Chitter Challenge

Build Status

For this project challenge, I have created a simple web app which requires a database.

Features

User Stories / Requirements

As a Maker
So that I can let people know what I am doing  
I want to post a message (peep) to chitter

As a maker
So that I can see what others are saying  
I want to see all peeps in reverse chronological order

As a Maker
So that I can better appreciate the context of a peep
I want to see the time at which it was made

How to use

To set up the project:

Clone this repository and then run:

bundle install

To set up the databases

Connect to psql and create the chitter and chitter_test databases:

CREATE DATABASE chitter;
CREATE DATABASE chitter_test;

To set up the appropriate tables, connect to the database in psql and run the SQL scripts in the db/migrations folder in the given order.

Run tests

rspec

Tech stack

  • Ruby
  • Sinatra
  • PostgreSQL
  • Travis CI
  • Rubocop

About

Build a Twitter Clone!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 83.2%
  • HTML 16.8%