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
mikumiku 

How to move my project from the developer edition environment to Enterprise edition enviroment?

I create my app on my developer enviroment.I want to move it to my enterprise edition now. Are there any way to move it ? or directly upgrade the developer enviroment?

 

Any help would be appreciate. 

Thanks

IspitaIspita

To move configuration data from Sandbox to Production, you can use Change Sets, Packages, the Metadata Toolkit (e.g. Ant scripts), and the Force.com Eclipse IDE. To move actual data, you can use the Import Wizards (for some data types) or the Apex Data Loader (for virtually all data types). 

 

The common tool used for deployment is the Java IDE having the Salesforce  plugin called Ecllipse.

 In case you want to find in detail about this IDE refer to the links below:-

Also if you deploy to a production organization:

  • 75% of your Apex code must be covered by unit tests, and all of those tests must complete successfully.

Note the following:

  • When deploying to a production organization, every unit test in your organization namespace is executed.
  • Calls to System.debug are not counted as part of Apex code coverage in unit tests.
  • While only 75% of your Apex code must be covered by tests, your focus shouldn't be on the percentage of code that is covered. Instead, you should make sure that every use case of your application is covered, including positive and negative cases, as well as bulk and single record. This should lead to 75% or more of your code being covered by unit tests.
  • Every trigger has some test coverage.
  • All classes and triggers compile successfully.

Hope this helps.