This file makes it easier for windows users to use docker. (Closes#829)
Previous to this commit, those who used Windows had to install Ubuntu
inside windows (via WSL) and run our commands. Now they can run it by
just typing `docker-compose up`.
> The main problem was that `./bin/dockerhub_run.sh` command was written
with `Bash` in mind and you had to change it a little bit to make it
compatible with windows `Powershell`. We shouldn't have two scripts.
This is why adding a `docker-compose.yml` file is necessary.
* Check for local untracked files when deploying
* Compress test for untracked files to 1 line
Co-authored-by: Maruan <alshedivat@users.noreply.github.com>
* Add vendor to .gitignore
* Add .bundle to .gitignore
Co-authored-by: Maruan Al-Shedivat <alshedivat.maruan@gmail.com>
The step in the deploy script that deletes almost all files except for _site/ was causing issues if you have a custom domain name. GitHub pages requires a CNAME, so I added this to the list of files not to delete.