- Object Relation Mapper
- Abstraction Layer to DB
- Makes DB relate like OOP
- Learn a lot more from Django-in-depth
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
| # import module | |
| import mongoengine | |
| # Django Database settings | |
| DATABASES = { | |
| 'default': { | |
| 'ENGINE': 'django.db.backends.dummy', | |
| }, | |
| } | |
| # MongoEngine Settings |
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
| #!/usr/bin/python | |
| # install boto using pip | |
| import types | |
| from threading import Thread | |
| from boto import ( | |
| ses, | |
| connect_s3 | |
| ) |
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
| #!/usr/bin/env bash | |
| # System wide Constants | |
| # Ubuntu Code Name Ex:- trusty for Ubuntu 14.04 | |
| CODE_NAME=$(lsb_release -c | awk '{print $2}') | |
| ## Install basic libraries required for ubuntu environment | |
| sudo apt-get install libcurl4-openssl-dev libssl-dev -y | |
| sudo apt-get install zsh -y | |
| sudo apt-get install python-software-properties -y |
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis
- add in requirements.txt
sudo pip install redis
- or from scritp.sh
echo "Installing Redis..."
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.