Firestorm Clone Tool

Hello

I have Firestorm installed. It’s updated. How do I run the Clone UI from the Terminal?

Thanks,

Hi Kamehana!

Do you need it to be from the terminal? The clone feature right now works from the UI, and there are APIs where you could put something together to work from a terminal…

No I don’t need it to work from the terminal. How do I run the UI ? Thx.

How far did you get on the readme?

Have you ever installed software from GitHub before (have you ever cloned a repo, for example?)

Once you follow those steps, “yarn server” creates a local web server you can access at http://0.0.0.0 - Thant’s where you can see the clone controls.

When I execute the yarn server I don’t see the clone controls. ( see attachment)

However, I do see a clone tool on the PB Web Interface which seems odd.

Thanks,

Firestorm Intall

Hi @Kamehana,
Firestorm isn’t in the yarm/npm repo list, so yarn install firestorm or yarn add firestorm wont work, but instead add an unrelated library. I don’t think it’s going to cause problems, but it’s not getting you closer.

You did wind up in the right directory about mid way, and ran yarn build and I assume if you can get to the interface you got a yarn server in there somewhere so you should have been good. My guess you have an older version downloaded.

For future reference, here are the steps:

  1. Either download a zip from https://github.com/simap/Firestorm or use git clone https://github.com/simap/Firestorm.git in the terminal to get a copy of the Firestorm code. You need to repeat this step to get a new version! Be sure to toss old versions first.
  2. cd into this directory. e.g. cd Firestorm or cd ~/Downloads/Firestorm-master/ after unzipping on a Mac. Also on Macs, you can type "cd " (trailing space!) and then drag and drop the folder on the terminal window and it will paste the path, then hit enter. If this works, you shouldn’t see an error message and your command line prompt will change.
  3. Now that you are in the Firestorm directory, run yarn. Just yarn. That will install the dependencies.
  4. Now build the web pages with yard build. This compiles the web app.
  5. The last step runs the server, and this is the only step you need to run to run Firestorm in the future (once you are in the right directory). Run PORT=3000 yarn server to start a server on port 3000, which you can access at http://localhost:3000 from the same machine.
2 Likes

Got it. Thanks Wizard and Jeff

Clone

1 Like