https://github.com/cdrani/me-book
Simple social media app
https://github.com/cdrani/me-book
herokuapp rails-app rails5
Last synced: 2 months ago
JSON representation
Simple social media app
- Host: GitHub
- URL: https://github.com/cdrani/me-book
- Owner: cdrani
- Created: 2018-10-24T19:47:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-04T20:22:29.000Z (over 7 years ago)
- Last Synced: 2025-06-20T01:02:36.504Z (about 1 year ago)
- Topics: herokuapp, rails-app, rails5
- Language: Ruby
- Homepage: https://me-book.herokuapp.com
- Size: 335 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# me-book
## Live: [me-book](https://me-book.herokuapp.com)
## Fully-featured social media app built with Ruby on Rails.
* Social media site for content sharing: Users can sign up securely,
create a profile, add friends, post, comment, and like other content.
* Uses Devise for user registration.
* Implements photo uploading with active_storage.
* Deployed on Heroku
## Getting started
* System dependencies
```
Ruby version: 2.5.1
Rails version: 5.2.1
Bundler version: 1.16.1
```
To get started with the app, clone the repo and then install the needed gems:
```
> bundle install --without production
```
Next, migrate the database:
```
> rails db:migrate
```
Finally run the app in a local server:
```
> rails server
```
Open your browser at `localhost:3000`.