Salesforce Source Code Management with Visual Studio Code, Git and GitHub
Salesforce made an easy to manage Salesforce source code with Visual Studio Code and GitHub by providing necessary extensions in the Visual Studio Code and Salesforce CLI which helps you to do manage whole process more easily. Here, we discussed about how source code can be retrieved and deployed to Salesforce orgs as well as to Git and GitHub.
Highlights of Salesforce Summer '18 Release Notes
Salesforce gets its CRM updated for every release. Generally, Salesforce has three releases per year(spring, summer, winter). In this we are going to look into updates and features of summer '18 release notes.
Creating Custom Splash Page in Salesforce
In many websites, we come across a page displaying first and then redirecting to the main website page automatically or clicking on a button, which is known as splash page. In Salesforce, we can have splash pages for tabs(custom objects). Upon clicking on the tab, we can have a splash page first and then the regular tab as it is.
Set Up of Communities in Salesforce
In any business communication among employees, customers, users and clients are very important. To collaborate and communicate in Salesforce we use communities. Communities will make sure that the customers get solutions to their queries in one place.
Using Python Weasyprint Generate HTML to PDF in Django
WeasyPrint is to combine multiple pieces of information into an HTML template and then converting it to a PDF document.
How to Create Thumbnail Image in Django Templates Using Sorl-Thumbnail?
Sorl thumbnail is the package that is being widely used to generate thumbnails in Django. It will create a thumbnail of a given size for the given image, which won't work out in the case of responsive designs. Html5's 'srcset' attribute is the solution for this problem to load proper images to the corresponding resolutions, whose thumbnails are generated with sorl thumbnail.
Deploying Your Django App on Heroku
Heroku is a platform as a service (PaaS) that enables developers to build and run applications entirely in the cloud.
1. installation
2. Creating and Deploying app.
3. Dependencies Used
Django Template Language Intro
We can write the required logics based on programming[python] syntax in models and views but, when we want to write simple logics we should follow the django's template syntax, because programming[python] syntax is not allowed.
How to Use Custom Labels in Salesforce
Salesforce is used by many users whose native languages are different, If the application doesn't have any Multilanguage feature, it would be difficult for the users to use it. So, in Salesforce we have Custom Labels where multilanguage applications can be created.
Using Gitlab API, Integrating Gitlab in Django Project for Authentication and Access
This is a simple way to integrate gitlab authentication in your django apps.
We can get user verified email id, general information, git lab URL and token from Gitlab API.
These Following steps are needed for Gitlab integration:
1. creating git lab app
2. Authenticating user and getting an access token.
3. Get user information, git lab URL using an access token.