Created
May 12, 2020 18:26
-
-
Save corlaez/4ab35d4383f6fb7a09a0e972920b8106 to your computer and use it in GitHub Desktop.
Notes for local dev jitsi-meet
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
# Open terminal where you want to create the jitsi sources folders and run: | |
# Download sources | |
git clone https://github.com/jitsi/jitsi-meet.git | |
# enter project folder | |
cd jitsi-meet | |
# make sure you have node version 12 or higher. Check it with | |
node -v | |
# If it is not 12.x.x or higher you should stop, and install the right version of node. | |
# Now install the npm packages | |
npm install | |
# Now you should be ready: | |
make dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I do not understand… WHAT IS THE POINT OF
make dev
if the localhost instance pulls all the files from somewhere else and NOT from the local folder???