Created
July 21, 2021 08:50
-
-
Save cblgh/3a298d356b6abfcc9cddb5bd8d47339f to your computer and use it in GitHub Desktop.
how to seed a cabal from anywhere
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# make sure you are using node 12 (underlying stack needs to be updated a bit for latest node versions) | |
# here we are using nvm for that purpose | |
nvm install 12 && nvm use 12 | |
# install cabal-cli globally | |
npm i -g cabal | |
# seed your cabal. default port that is used is 13331 | |
cabal <cabalkey> --seed | |
# to change the default port, use the --port flag | |
cabal <cabalkey> --seed --port 7331 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment