Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
Django Custom Management Commands
In Django project, We could manage by executing some commands which could be invoked through the manage.py. -
Using Django's Built in Signals and Writing Custom Signals
Django has a beautiful feature of signals which will record all the actions performed on particular model. In the current blog post we’ll learn how to use django’s built in signals and how to create custom signal.Django has lot of built in signals like pre_save, post_save, pre_delete and post_delete and etc. Now we’ll learn how to use django’s pre_delete signal with a simple example. In the way we use pre_delete in the present blog post we can use other signals also in the same way. -
Django Subdomains to do Advanced Things
We always struggle to give users customization's even before they login to the system like abc.micropyramid.com and django don't know how to handle that out of the box.We can do it by writing simple middle ware. Django Middle ware have access to request and responses, so, we can get hold on to request and pass it on to django views for further process. Here we will add new property to request and can render pages by seeing at the subdomain property. -
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. -
Setting up Reactjs Environment & First Reactjs App(Hello-World)
create your first react application hello-world from scratch. A step by step guide to understand and setup the reactjs environment. Understand the node package manager and the packages that we use while setting up the reactjs environment. -
Understanding Logstash Parsing Configurations and Options
In This Tutorial we will learn to customize Logstash to parse any type of Log Files. Logstash helps us to process logs and other event data from a variety of systems. It also Supports variable injection into elasticsearch and has 200+ plugins. -
Setting Up Gitlab Container Registry on own Domain
GitLab Container Registry is a secure and private registry for Docker images integrated completely in Gitlab. In this tutorial we will setup and use GitLab Container Registry. If you're using previous versions of Gitlab upgrade and then follow this tutorial. -
Django Generic Many to Many Field Implementation
Django application has a GM2MField that combines the features of the standard Django "ManyToManyField" and "GenericForeignKey". -
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. -
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. -
Php7 Hosting on Ubuntu Server with Nginx(LEMP Stack)
PHP7 is the latest version with lot of performance improvements and every one want to update their servers and code to it. Lets see how to configure one and host your code.Here we see the combination of ubuntu, nginx, php-fpm, php7, and mysql.Compared to LAMP stack LEMP is powerfull as we use Nginx as reverse proxy and static file serving in contrast to Apache server. -
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. -
E-commerce (Paypal) Integration with Django
E-commerce is integration is becoming almost essential for every web application now a days. There are so many payment gateways to integrate with our application. Some of them are Amazon payments, Asiapay, BPAY, Brain Tree, PayPal ...etc. Out of these now in this we'll see how to integrate Paypal with our django Application. -
Dynamic Models in Django (Adding New Fields to Models from Admin)
Some times in the production level there may be a chance of adding new fields to our model.With the normal django models when we add new field to the model the database is not able to identify the new field.To make database identify the new field we have to drop the existing database from the database and sync our application again.During the time of production it is not possible to remove the existing data. The solution for this is Django-eav. With this we can add fields to our models on fly. -
Django Inclusion Tags
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. -
How to Convert a Web Page into PDF Format Using RenderAs Attribute
Companies frequently need web page data to be converted into pdf. So, they can have an easy look into the progress. For this in salesforce we can convert visual-force pages, which consist of critical data into PDF format. -
How to Enable Opportunity Splits in Salesforce
Opportunity splits allows sales representatives to divide credit and revenue on any sales deal. If your sales process splits revenue from closed-won deals to give credit more than one team member then opportunity split feature will be used. -
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. -
Process Builder in Salesforce
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. -
How to Create Permission Sets in Salesforce
A permission set is a collection of settings and permissions that give users access to various tools and functions. -
How to Create One to One Relationship between Objects in Salesforce
Salesforce provides two relationships known as one to many relationship and many to many relationship(this can be done using junction object). Hence in this, we create one to one relationship by using lookup field, using roll up summary and triggers. -
How to Access Schema Builder in Salesforce
Schema builder in Salesforce is used to get all the objects and different kinds of relationships in one place. It can be used to modify and design new data models. Objects and fields can be created or modified in the schema builder. -
How Salesforce Financial Service Cloud Solves the Major Financial Service Problems
Salesforce Financial service cloud is designed to connect with the customers and clients more personally than ever. It helps to solve the security and other challenges faced by financial sector industries -
How to Manage Large Data Volumes Using Skinny Tables and Indexes
In every case, it’s hard to deal with tables containing a huge number of records. You can make skinny tables to contain oftentimes utilized fields and to maintain a strategic distance -
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.