All your favorites movies, classified.
HTML - Sass (with Compass) - jQuery - PHP - MySQL - Facebook app
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.
Command line :
- First, you need to fork this project with the GitHub Interface ("Fork" button).
- 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).
- 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 - 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 : git status- to see all the modified files (reds are yet to add and greens will be added).git add filename- to add the modified files to the commit! For example,git add style/css.cssorgit add .to add all files.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").git pull- to update possibles changes on the repo online.git push| Send all the commit added files to your profile Github (it will ask you your Username and Password)
Compass is a CSS framework used to compile and add useful mixins to your SCSS.
- (Windows) Download Ruby from here.
- Install it and IMPORTANT enable "Add Ruby executables to your PATH" during the installation.
- 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.