Giter Club home page Giter Club logo

theodinproject's Introduction

v0.2.0

This site provides the main user experience for The Odin Project, including the home page and all user functions. It is meant to be a shell around The Curriculum and to include the tools that help students learn more effectively along their learning journeys.

The website has been open-sourced to provide both a learning resource for students who want to see how the tools they're using are built and to give students the opportunity to stretch their wings and contribute to a real open-sourced project... while building the tools they themselves will be using.

For minor fixes, either submit a github issue or a pull request. Please coordinate with the project maintainers if you're interested in working on some of the larger features in order to avoid traffic jams.

http://theodinproject.com/

Check out the Contributing Page if you'd like to learn more about how to help out

Contact us directly at [email protected]

Contributing to the Site

This project is emphatically beginner-friendly so, if you're interested in potentially contributing, take a look at the Contributing Page on the website for more information. See the Getting Involved document for details of how we develop the website.

Hacking on the Site Yourself: Getting Set Up

This site runs on Ruby 2.0.0-p353 and Rails 4.0.0 (upgraded from Ruby 1.9.3 and Rails 3.2.12 in February 2014)

Nitrous.io Setup

We STRONGLY recommend windows users and newbies having trouble setting up their environments just use nitrous.io. Nitrous is a cloud-based development environment. They basically just give you a fully stocked machine that's almost ready to go out of the box.

We use Nitrous almost exclusively during our group coding sessions so, if you'd like to get involved that way, you'll need to set it up eventually.

  1. Follow along with this gist to do the setup.
  2. Don't forget to populate your test database with $ rake db:test:prepare

Standard Setup

  1. Start by forking this repository by clicking the Fork button at the top right of this Github repo and then download your copy of the repo to your local machine by doing a $ git clone [email protected]:YOUR_USERNAME/theodinproject.git from the command line (the $ stands for your command prompt)
  2. Hopefully you've got RVM set up on your machine (if not, check out the Installations Project. You'll need to make sure you have Ruby 2.0.0p-353 installed (see installed rubies with $ rvm list). If you don't have it, get it using $ rvm get stable then rvm install 2.0.0-p353.
  3. You'll need to create a project-specific gemset to keep track of all the gems we use in one place. The repo has a (hidden) file called .ruby-gemset which specifies the gemset for you every time you enter the project's directory. It should be called theodinproject to match up. You can create it by running $ rvm gemset create theodinproject. For help with RVM, check out this blog post
  4. cd into the project directory using $ cd theodinproject
  5. Run a $ bundle install to install all the gems used by the project.
  6. Note: Both local and production databases are Postgres, so if you're used to just using Rails' default SQLite database you'll need to get Postgres fired up on your local machine. You can probably get away with just typing $ rake db:create but may need to download a client for it and create a theodinproject database that the application can connect to. The major difference is that Postgres operates almost like a server. Ryan Bates has a RailsCast episode about migrating to Postgres that may be helpful if you're a newbie. If you're deployed on Heroku (which we are), you need to use PG anyway.
  7. Once you've got postgres installed and have created the empty database, run a $ rake db:migrate to run all the migrations that will set up the schema properly. Then run $ rake db:test:prepare to set up the test database so you can actually run specs.
Populating the Database
  1. The db/seeds.rb file is used to populate all the course and lesson meta-data. Use the command $ rake db:seed to populate all the meta-data for courses and lessons so you can run the rake task in the next step. db/seeds.rb is identical to the data you'll see presented on the production site (this is used to populate it). You can run it as many times as you'd like... it basically deletes all metadata and repopulates it with each run. The seeds file only creates curriculum data, it doesn't create any users.

  2. One thing the seeds file will not populate is the actual content for each lesson. This needs to be retrieved from the curriculum repository on github (which is at http://www.github.com/theodinproject/curriculum) by running the rake task ($ rake curriculum:update_content). But there's a catch... Github only allows you something like 50 API calls per hour if you haven't registered for an API key with them and used it to authenticate your requests. As of this writing, there are over 90 lessons so you would be rate limited before even finishing populating them with the rake task if you don't get an API key yourself. So go get an API key from github (at https://github.com/settings/applications) and use Figaro (as described below) to pass that key to the application so you can happily download all the curriculum files into your build.

  3. The DISQUS forums and Github API calls rely on private environment variables (to store their API secret keys) that you won't find in the repo. I upload them directly to the server myself using the figaro gem and a corresponding file called application.yml that's located in my config/ directory but not checked into git (no, you can't have my passwords). Check out the Figaro Documentation for a very easy-to-understand explanation of how the gem works. You basically just need to run $ rails generate figaro:install and populate the missing variables to application.yml. An example, as of this writing:

     # config/application.yml --these are two steps.  first two steps are created on initial registration at [http://disqus.com/admin/create/].  Second two are given when you request access to SSO for your application via a form at [http://help.disqus.com/customer/portal/articles/236206-integrating-single-sign-on]
     DISQUS_ACCOUNT_NAME: generated_on_intial_signup
     DISQUS_WEBSITE_NAME: generated_on_initial_application_registration
     DISQUS_API_SECRET_KEY: generated_after_SSO_permission_granted
     DISQUS_API_PUBLIC_KEY: generated_after_SSO_permission_granted
    
     # config/application.yml --acquire this on your github account, through settings/application/register new application.This is to make OAUTH (signin with github) function correctly.
     GITHUB_API_TOKEN: your_token_would_go_here
     GITHUB_API_ID: API_ID_Generated_with_registering_application
     GITHUB_SECRET: ALSO_GENERATAED_WITH_REGISTERING_APPLICATION
    
  4. Run a $ rails server and see if that lets you check out the app at http://localhost:3000.

  5. That... should... be... it...?

This is basically all you need to get yourself set up with the repo and you should be able to run a server with $ rails s or the tests with $ rspec spec. Of course, nothing ever goes according to plan when installing things but hopefully your "Googling the error message" skills are up to the task.

Installing Postgres on Linux

If you're running Linux, this should be helpful. If not... carry on, nothing to see here.

  1. Open your terminal and type ```sudo apt-get install postgresql

  2. After installing postgres, you might like to install pgAdmin III. It is a nice GUI to have, especially for beginners. To do this, in terminal type ```sudo apt-get install pgadmin3

  3. To start off, we need to change the PostgreSQL postgres user password; we will not be able to access the server otherwise. As the “postgres” Linux user, we will execute the psql command. In terminal, type ```sudo -u postgres psql postgres

  4. Set a password for the "postgres" database role using the command: ```\password postgres and give your password when prompted. The password text will be hidden from the console for security purposes. Type Control+D to exit the posgreSQL prompt.

  5. To create the first database, which we will call "odin", simply type:


6. For ""Postgresql 9.1""+ install the adminpack "extension":
```sudo -u postgres psql
```CREATE EXTENSION adminpack;

7. Open up pgAdmin III (app menu->development->pgAdmin III)

8. Open file->add server and populate the following as field:data

Name: localhost
Host: localhost
Port: 5432
Service: <leave blank>
Maintenance DB: postgres
Username: $USER
Password: <whatever>
Store Password: yes
and click "OK".

9. You should see a new server populated in the side panel of the pgadmin window.

10. Expand (+) the server and you will see the database you created with a red X next to it. Double click to connect the database.

11. You now have postgresql set up with a GUI frontend for management, if you so desire. It is much easier for a newcomer to user pgadmin III than to try and figure out all the terminal commands.

12. Edit your /config/database.yml with the correct database information you set up in the prior steps. It will then connect to the database you created and ```rake db:migrate will now properly function.


*Please let me know what I've missed here!*

## Now that you're up and running... [Come Help Out!](http://theodinproject.com/contributing)

## Significant Contributors

* [Erik Trautman](https://github.com/eriktrautman)
* [Afshin Moktari](https://github.com/afshinator)
* [Josh Gorchov](https://github.com/gorchov)
* [Joe Sawyer](https://github.com/zkay)
* [Bill Walker](https://github.com/mach1010)
* [Neil Gehani](https://github.com/ngehani)

<hr>
Created by [Erik Trautman](http://www.github.com/eriktrautman)

theodinproject's People

Contributors

abbyjonesdev avatar alexzielonko avatar bdougie avatar behaviary avatar dklounge avatar dominathan avatar eriktrautman avatar gorchov avatar hardeepkumar avatar ianwhitedeveloper avatar jeffbayes avatar joaostein avatar learnbybuilding avatar mach1010 avatar mattphoto avatar mxschumacher avatar tjperry07 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.