- Installation/Setup ======================
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
# Install linux update, followed by GCC and Make | |
sudo yum -y update | |
sudo yum install -y gcc make | |
# Install Nginx and php56-FPM | |
sudo yum install -y nginx php56-fpm | |
# Install php56 extensions | |
sudo yum install -y php56-devel php-mysql php56-pdo php56-pear php56-mbstring php56-cli php56-odbc php56-imap php56-gd php56-xml php56-soap |
Inspired and edited from this Digital Ocean tutorial.
Follow the steps on this gist to setup a LEMP stack with PHP 7.0.
The steps assume Nginx has been configured correctly.
For the domains example.com
and test.com
, create the folders.
Logging is done in two places:
- storage/logs/laravel.log
- /var/log/nginx/error.log
Clear logs with:
> laravel.log
sudo bash -c '>error.log' #for nginx
#Steps to install latest Laravel, LEMP on AWS Ubuntu 16.4 version. This tutorial is the improvised verision of this tutorial on Digitalocean based on my experience.
Run the following commands in sequence.
sudo apt-get install -y language-pack-en-base
sudo LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install zip unzip
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
from elasticsearch import Elasticsearch | |
es = Elasticsearch() | |
res = es.get(index="belajar", doc_type='pesan', id=1) | |
print(res['_source']) |
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
Github and Travis | |
#prereq for travis installation: | |
1. install travis-cli | |
1.1 ruby --version | |
-> gives 2.3 | |
(1.2 sudo apt-get install pkg-config) | |
1.2 sudo apt-get install build-essential | |
sudo apt-get install libffi-dev | |
#install travis |
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
class ChatLocaleMiddleware(object): | |
def process_request(self, request): | |
if request.path in ['/jsi18n/']: | |
return None | |
match = SHOPPER_CHAT_PATH.match(request.path) | |
if match is not None: | |
appid = match.groups()[0] | |
try: | |
store = Store.objects.get(appid=appid) |
- put methods that apply to a single instance of a Model on the model class itself
- put methods meant to query against a Models entire table that models corresponding managers.py file.
- if a models.py file gets too long to manage then create a models directory and place an __init__ file in it.
- try to avoid using signals, but if you must then put them in a signals.py file