Skip to content

trenyture/VoxOffice

Repository files navigation

VoxOffice

All your favorites movies, sorted.

Technologies :

HTML - Sass (with Compass) - jQuery - PHP - MySQL - Facebook app

Description :

VoxOffice is a small project aiming for a blazing fast classification of thousands of movies.
To reach this goal, YOU are the main contributor, as you can vote, add and compare all the films you want.

How to use Git :

Command line :

  1. First, you need to fork this project with the GitHub Interface ("Fork" button).
  2. Then you have to go on your profile and on the forked project "YourName/VoxOffice". Now, you can clone the forked project with the projet URL (on Github or copying this URL in your browser and adding ".git" at the end).
  3. Open your command line terminal (Git Bash on Windows) and go to the directory where you want to install it, for exemple : cd C:/xampp/htdocs
  4. Finally, type git clone URL. Your project is now all set!

    When you finished your modifications and you want to share it with me, you have to upload it on your GitHub profile first :

  5. git status - to see all the modified files (reds are yet to add and greens will be added).
  6. git add filename - to add the modified files to the commit! For example, git add style/css.css or git add . to add all files.
  7. git commit -m "Your message" - to initialize the commit which will send all the documents in your GitHub profile, with a message (ex: "Header styles modification").
  8. git pull - to update possibles changes on the repo online.
  9. git push | Send all the commit added files to your profile Github (it will ask you your Username and Password)

How to install Compass and use it :

Compass is a CSS framework used to compile and add useful mixins to your SCSS.

  1. (Windows) Download Ruby from here.
  2. Install it and IMPORTANT enable "Add Ruby executables to your PATH" during the installation.
  3. Then, run your terminal (Cmd/PowerShell on Windows) and type gem install compass

    You just installed Compass! To use it :

    Go to your VoxOffice path and double click on the init.bat file. It will open a new command terminal which should stay opened as long as you edit your SCSS files.

    Now, you can edit every SCSS files in VoxOffice/Sass and it will automatically compile and replace the previous css files.

Enjoy and see you soon ;)