function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Anshuman ParhiAnshuman Parhi 

Deployment of application

how to create....
Deployment of application


Any solution for this
ANUTEJANUTEJ (Salesforce Developers) 
Hi Anshuman,

>> https://developer.salesforce.com/forums/?id=906F0000000AtjDIAS

The above link has a thread of various ways you can deploy an app one of the easiest ways is through changesets, I am adding the details below for quick reference:
 
If you want to deploy your Salesforce.com application from one environment to another (e.g. Development to test, Test to Production) you have various options available based on different type of Scenarios. If you want to migrate the entire set of changes you developed / customize you can use tools like Force.com Migration Tool. It is Java/Ant-based command-line utility for moving metadata between a local directory and
a Salesforce organization.

If you are moving from Sandbox to production follow the steps:

Step 0: Connect your Sandbox and Production orgs
Setup >> Deploy >> Deployment Connections 
You’ll only need to do this once!

Step 1: Navigate to the Outbound Change Sets page in Sandbox
Setup >> Deploy >> Outbound Change Sets

Step 2: Add all necessary components to a new change set, then upload to Production

Step 3: Login to your production org, find the Inbound Change Set, and deploy!
Setup >> Deploy >> Inbound Change Sets

Once you hit the “Deploy” button (no need to validate!), you’ll have to wait a few minutes for the changes to go through. Deployment will be completed.

Let me know if it helps you and close your query by marking it as the best answer so that it can help others in the future.  

Thanks.