Gitlab and Docker - Continuous Integration, Deployment and Continuous Delivery
In this blog post, we will learn how to setup and use gitlab container registry to implement, test build and deploy your code automatically with Docker.
Jquery: Features, Overview and its Future
With the invention of new javascript frameworks and libraries, it is difficult for jquery to return to its prominence, but jquery will still be used by developers.
Process builder is the best automation tool available in Salesforce which can perform complex workflows seamlessly to automate anyone's business process. We can view process in graphical representation before activating it.
Understanding Django Permissions And Groups
Django comes with a simple permissions system. It provides a way to assign permissions to specific users and groups of users. We can have permissions for add, edit, deleting a model.
Django’s template system comes with a wide variety of built-in tags and filters designed to address the presentation logic needs of your application. You can extend the template engine by defining custom tags and filters using Python, and then make them available to your templates using the {% load %} tag.
Custom template tags and filters must be inside a Django app. If they relate to an existing app it makes sense to create them there; otherwise, you should create a new app to hold them.
Hosting Django Application with Nginx and UWSGI
Django is a python based web- application development framework. Setting up a sample app and running it as easy as pie. Nginx is a webserver and like every other webserver it has it Pro's and Con's. Nginx was an answer to concurrency issue(handling thousands of concurrent connections) faced in apache and raised to fame.
Kubernetes Installation on BareMetal(Fedora)
Kubernetes manages containerized applications across multiple hosts. With years of experience in managing highly scalable products, google has released kubernetes an open source project which manages containerized applications across multiple hosts. Kubernetes is actively developed with more than 700 active developers. Kubernetes can be setup over any cloud platform any os. Its is based on etcd which is a key value store that provides shared configuration and service discovery for clusters.
Clustering of Docker Containers using Docker Swarm
There are many available ways of Docker clustering. Kubernetes, Docker cloud, Docker Swarm etc., In this Tutorial we will learn setting up a cluster using Docker Swarm and launch a container on Node.
How to Deploy Django Project into Docker Container
Docker, has captured the hearts and minds of the Devops community, with its platform for delivering distributed applications in containers. In this Blog Post, Lets look on how to deploy a sample django app into docker container.
Getting Started with the IPython Notebook
IPython is a set of tools developed to make it easier for the programmers to work with Python and data. IPython provides extensions to the Python programming language that make working interactively convenient and efficient. IPython Notebook lets you write and execute code, analyze data in your web browser.