https://github.com/hackvan/portfolio-example
https://github.com/hackvan/portfolio-example
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hackvan/portfolio-example
- Owner: hackvan
- Created: 2018-04-14T01:54:45.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-14T01:55:41.000Z (about 7 years ago)
- Last Synced: 2025-01-05T17:13:24.633Z (5 months ago)
- Language: Ruby
- Size: 791 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Portfolio App
=============This project is an example app for Ruby on Rails.
Demo: [heroku app](https://dc-portfolio-app.herokuapp.com/)

## Requirements
- Ruby version: `2.4.1`
- Rails version: `5.1.5`
- Postgresql: `9.6.3`## Installation
> If you are using rvm, you can create a gemset for the project:
> `rvm use 2.4.1@portafolio_app`Install dependencies
```
$ bundle install
```
> You need bundler in order to run this command, you can install with: `gem install bundler`## Database
In order to create the database:
```
$ rails db:create
$ rails db:migrate
```To populate with the initial data of the app:
```
$ rails db:seed
```> Don't forget to run the instance of postgresql before this steep.
## Run
To run the application
```
$ rails server
```Open your web browser and go to `http://localhost:3000`
> For demonstration purposes only:
>
> username: administrator
>
> password: 123456## License
Copyright (C) Diego Camacho (2018)
Licensed under the [Apache License](http://www.apache.org/licenses/LICENSE-2.0), Version 2.0