KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
sql_tutor
★ 10
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
cfdi-catalog
:
Librería para descargar el catálogo del Servicio de Administración Tributaria (SAT)
Supermarket-Billing-Software
:
Mini Project in C++
Blockchain-Learning
:
区块链,比特币,数字货币,加密算法
deeplens-challenge
:
DeepLens Family Assistant provides dementia patients with personalized device recognizing family members and audio playing their bio
KVM48
:
The Koudai48 VOD Manager
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
sql_tutor
?
Download (.md)
# Sql Tutor In this challenge you'll move through a series of challenges that require you to form SQL queries to accomplish various tasks. The challenge itself takes the form of a rails app, so you'll be cloning it down and starting the server before you begin. Instructions are below, let's get started! ### Setup Clone this repository and `cd` into it. Install gems: ``` $ bundle install ``` Drop the database (if it says no database exists, that's ok): ``` $ bundle exec rake db:drop ``` Create the database: ``` $ bundle exec rake db:create ``` Migrate the database (this will add tables to the DB): ``` $ bundle exec rake db:migrate ``` Seed the database with sample data: ``` $ bundle exec rake db:seed ``` Start the server: ``` $ bundle exec rails s ``` Visit [http://localhost:3000](http://localhost:3000)