- Install Simple Theme Plugin.
- Put rows.css to
.jenkins/userContent/rows.css
. - Go to
http://localhost:8080/configure
. URL of theme CSS
set tohttp://localhost:8080/userContent/rows.css
.- Save and Reload page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Found here https://github.com/mitchellh/vagrant/issues/4204 | |
if RUBY_PLATFORM =~ /mingw32/ | |
config.vm.synced_folder ".", "/project" | |
else | |
config.vm.synced_folder ".", "/project", type: "nfs", mount_options:['nolock,vers=3,udp,noatime,actimeo=1'] | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assetic: | |
# When enabling compass, don't forget to add to parameters.yml: | |
# assetic.filter.compass.images_dir: %kernel.root_dir%/../web | |
# assetic.filter.compass.http_path: / | |
compass: | |
bin: /usr/local/bin/compass | |
apply_to: "\.scss$" | |
load_paths: | |
- %kernel.root_dir%/../assets/scss |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :apc do | |
desc <<-DESC | |
Create a temporary PHP file to clear APC cache, call it (using curl) and removes it | |
This task must be triggered AFTER the deployment to clear APC cache | |
DESC | |
task :clear_cache do | |
front_url = fetch(:front_url) | |
apc_script_path = fetch(:apc_script_path) |
Case insensitive tab completion:
echo "set completion-ignore-case on" >> ~/.inputrc
Git branch being displayed. Add to ~/.bashrc
:
PS1="$GREEN\u@\h$NO_COLOR:\w$YELLOW\$(parse_git_branch)$NO_COLOR\$ "
Steps to setup selenium with xvfb on debian
apt-get install xvfb
wget http://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.1.jar
sudo echo "deb http://downloads.sourceforge.net/project/ubuntuzilla/mozilla/apt all main" >> /etc/apt/sources.list
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com C1289A29
sudo apt-get update