This file contains 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
build: | |
- 'composer install --no-dev --classmap-authoritative' | |
- 'php artisan event:cache' | |
- 'sh ../../../utils/vapor_build_purge.sh' |
This file contains 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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
This file contains 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
{"status":"error","status_code":401,"status_text":"Unauthorized","current_content":"","message":"Authentication Required"} |
This file contains 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
### Set up SO: | |
sudo -s | |
yum -y install gcc gcc-c++ make | |
### Download and install Redis: | |
cd /opt | |
wget -q http://download.redis.io/releases/redis-2.8.7.tar.gz | |
tar xzf redis-2.8.7.tar.gz | |
rm -f redis-2.8.7.tar.gz |