help needed for deployment
See original GitHub issueHi! My goal is to create something similar with your work on embeddings.
After cloning the two repos, I have created a directory my_data
under your project pm
, containing labels.json
links.bin
and positions.bin
as described. I have also changed the `src/config.js’ to have:
export default {
dataUrl: './my_data/'
};
However, when I start npm start
, it automatically shows the Code Galaxies Visualization. I guess I am losing a path or something simple. How can I see my visualization?
Issue Analytics
- State:
- Created 6 years ago
- Comments:11 (3 by maintainers)
Top Results From Across the Web
Preparing for Deployment – The Essentials - Military OneSource
Need help as you prepare for deployment? Military OneSource offers a number of assistance programs and services for service members and their families....
Read more >Pre-Deployment Checklists - Military.com
Make sure you know where to go if you need financial assistance (e.g., Family Service Center, Command Ombudsman, Personnel Support Detachment (PSD), or...
Read more >What should I bring on a deployment? - FDA
Category Item Norm Field XUS MIL
Clothing/Uniform Civilian/professional Y Y
Clothing/Uniform BDUs Y Y
Clothing/Uniform Khakis Y Y
Read more >DEPLOYMENT PACKING LIST
DEPLOYMENT PACKING LIST. PACKING/BAGS/GENERAL ADVICE. Pack as light as possible taking into ... 1 qt Ziploc with travel size essential toiletries/shave kit.
Read more >Budget-Friendly Deployment Necessities For Your Packing List
Deployment Packing List · Extra pair of glasses: If you're blind like me, these are important! · Medication: The amount needed for your...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I faced the same issue and fortunately found the solution Here are the steps, which helped in my case:
src/config.js
in this format:'//127.0.0.1:8080/'
graph-data
, but it had to be written like this:graph_data
positions.bin
file is requested from this url:http://127.0.0.1:8080/graph_data/undefined/positions.bin
, so I had to add a nested folder to my data folder, and name itundefined
, literally. After that I moved all my data files into itThat’s all, visualization is extremely beatiful, but the tool has very high entrance barrier for newbies like me. Anyway, it was worth it. Thank you, anvaka@
@balikasg - sorry about that. I updated my comment, describing how to access the visualization from
pm
and also corrected, thatmy_data
needs to be nested.