Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do I ever want to install a package outside of a sandbox?

Tags:

haskell

cabal

After 3 months of using Haskell, I just realized that I shouldn't use cabal as a package manager.

Now my question is do I ever want to install a package outside of a sandbox? If yes, why?

like image 488
Maik Klein Avatar asked Feb 20 '14 09:02

Maik Klein


People also ask

How do I install Sandbox packages?

Pre-Installation StepsEnter your username and password for the Salesforce organization in which you want to install the package, and then click Log In. Select Install in Production or Install in Sandbox.

What functionality should be used to set up packages in Salesforce?

Salesforce has two ways that you can build managed packages, first-generation packaging (1GP) and second-generation packaging (2GP). This guide describes 1GP. For new solutions, use 2GP as described in the Second-Generation Managed Packages section of the Salesforce DX Developer Guide.

What is managed package and unmanaged package in Salesforce?

Unmanaged packages are typically used to distribute open-source projects or application templates to provide developers with the basic building blocks for an application , whereas Managed packages are typically used by salesforce.com partners to distribute and sell applications to customers.


1 Answers

I often muck around with ideas that aren't full packages. They're often a single file, around 30-100 lines, don't have a main, aren't libraries, and are never intended to be used as anything other than toys to load in ghci. Occasionally, they depend on libraries from packages that don't come with ghc. I'll just install packages they depend on in my user db, because who cares? Worst case, I'll nuke ~/.ghc and reinstall what I need for whatever I work on next.

like image 85
Carl Avatar answered Sep 18 '22 23:09

Carl