https://github.com/therealedsheenan/mockoutube
Rails application
https://github.com/therealedsheenan/mockoutube
ruby ruby-on-rails
Last synced: about 2 months ago
JSON representation
Rails application
- Host: GitHub
- URL: https://github.com/therealedsheenan/mockoutube
- Owner: therealedsheenan
- Created: 2020-06-05T08:14:23.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T19:17:22.000Z (over 3 years ago)
- Last Synced: 2025-01-22T17:27:24.260Z (over 1 year ago)
- Topics: ruby, ruby-on-rails
- Language: Ruby
- Homepage:
- Size: 1.25 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mockoutube
A basic Rails application
### Getting started
Clone the repository to your local machine:
```
$ git clone https://github.com/therealedsheenan/mockoutube.git
```
Install the necessary dependencies
```
$ cd mockoutube # If you're note in the current project directory yet
$ bundle install
$ yarn install
```
Setup database
```
$ bundle exec rails db:setup
```
Run the server
```
$ bundle exec rails s
```
### Tests
To run test, run the following command:
```
$ bundle exec rails test
```
#### Highlighted test scripts
The following directories are the main test scripts:
- `test/controllers/**`
- `test/controllers/models/**`
- `test/controllers/system/**`