Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
cyberreboot -> iqtlabs
Browse files Browse the repository at this point in the history
  • Loading branch information
cglewis committed Jul 31, 2020
1 parent 34599a6 commit 0b03f0a
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 29 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ jobs:
- name: Build Docker
run: |
docker build \
-t cyberreboot/crviz:${{ steps.change_version.outputs.VERSION }} . && \
-t iqtlabs/crviz:${{ steps.change_version.outputs.VERSION }} . && \
docker build \
-f Dockerfile.gh \
-t cyberreboot/crviz-gh:${{ steps.change_version.outputs.VERSION }} .
if: github.repository == 'cyberreboot/crviz' && github.event_name == 'pull_request'
-t iqtlabs/crviz-gh:${{ steps.change_version.outputs.VERSION }} .
if: github.repository == 'iqtlabs/crviz' && github.event_name == 'pull_request'

- name: Docker Login
env:
DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }}
run: |
echo "${DOCKER_PASSWORD}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin
if: github.repository == 'cyberreboot/crviz' && github.event_name == 'push'
if: github.repository == 'iqtlabs/crviz' && github.event_name == 'push'

- name: Push Docker
env:
Expand All @@ -45,5 +45,5 @@ jobs:
docker buildx build \
--platform linux/amd64,linux/arm/v7,linux/arm64 \
--push \
-t cyberreboot/crviz:${{ steps.change_version.outputs.VERSION }} .
if: github.repository == 'cyberreboot/crviz' && github.event_name == 'push'
-t iqtlabs/crviz:${{ steps.change_version.outputs.VERSION }} .
if: github.repository == 'iqtlabs/crviz' && github.event_name == 'push'
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
if: github.repository == 'cyberreboot/crviz'
if: github.repository == 'iqtlabs/crviz'
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ that feature *on top of* CRviz.
### Create issues...

Any significant improvement should be documented as [a github
issue](https://github.com/CyberReboot/CRviz/issues) before anybody
issue](https://github.com/IQTLabs/CRviz/issues) before anybody
starts working on it.

### ...but check for existing issues first!
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.gh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN git config --global user.name "rashley-iqt"
COPY . /app
WORKDIR /app
RUN sed -i '2i\
"homepage": "https:\/\/cyberreboot.github.io\/CRviz", \
"homepage": "https:\/\/iqtlabs.github.io\/CRviz", \
' package.json

RUN npm i npm@latest -g
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
# CRviz

[![Build Status](https://travis-ci.org/CyberReboot/CRviz.svg?branch=master)](https://travis-ci.org/CyberReboot/CRviz)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/6fe34768060e4f75a9ad8d20c0c31fec)](https://www.codacy.com/app/CyberReboot/CRviz?utm_source=github.com&utm_medium=referral&utm_content=CyberReboot/CRviz&utm_campaign=Badge_Grade)
[![codecov](https://codecov.io/gh/CyberReboot/CRviz/branch/master/graph/badge.svg?token=ORXmFYC3MM)](https://codecov.io/gh/CyberReboot/CRviz)
[![Docker Hub Downloads](https://img.shields.io/docker/pulls/cyberreboot/crviz.svg)](https://hub.docker.com/u/cyberreboot)
[![codecov](https://codecov.io/gh/IQTLabs/CRviz/branch/master/graph/badge.svg?token=ORXmFYC3MM)](https://codecov.io/gh/IQTLabs/CRviz)
[![Docker Hub Downloads](https://img.shields.io/docker/pulls/iqtlabs/crviz.svg)](https://hub.docker.com/u/iqtlabs)

CRviz is our first attempt at visualizing networks differently. It's still an early prototype, and it's still under development. That said, we want to share the tool in this formative stage both because we think that our approach has the potential to improve the scalability and legibility of network data, and also because we're actively looking for feedback. So please send us your suggestions and comments!

For more details, please see this [blog post](https://blog.cyberreboot.org/crviz-scalable-design-for-network-visualization-14689133fd91).

For a live demo, please check out https://cyberreboot.github.io/CRviz/
For a live demo, please check out https://iqtlabs.github.io/CRviz/

## Build and run

Expand All @@ -32,7 +30,7 @@ docker stop crviz

### Without Docker
1. Install or update npm (`sudo apt install npm`, `npm install -g npm`)
2. Clone CRViz repo `git clone https://github.com/CyberReboot/CRviz.git`
2. Clone CRViz repo `git clone https://github.com/IQTLabs/CRviz.git`
3. `cd CRViz`
4. Run `npm install && npm run build`

Expand Down
24 changes: 12 additions & 12 deletions src/datasets.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
[
{
"name": "Sample: 400 nodes",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/400.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/400.json"
},
{
"name": "Sample: 1400 nodes",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/1400.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/1400.json"
},
{
"name": "Sample: 4000 nodes",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/4000.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/4000.json"
},
{
"name": "Sample: 500 nodes s0",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/500_s0.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/500_s0.json"
},
{
"name": "Sample: 500 nodes s1",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/500_s1.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/500_s1.json"
},
{
"name": "Sample: 500 nodes s2",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/500_s2.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/500_s2.json"
},
{
"name": "Sample: 1500 nodes s0",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/1500_s0.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/1500_s0.json"
},
{
"name": "Sample: 1500 nodes s1",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/1500_s1.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/1500_s1.json"
},
{
"name": "Sample: 1500 nodes s2",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/1500_s2.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/1500_s2.json"
},
{
"name": "Sample: 5000 nodes s0",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/5000_s0.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/5000_s0.json"
},
{
"name": "Sample: 5000 nodes s1",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/5000_s1.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/5000_s1.json"
},
{
"name": "Sample: 5000 nodes s2",
"url": "https://raw.githubusercontent.com/cyberreboot/CRviz/master/sample_data/5000_s2.json"
"url": "https://raw.githubusercontent.com/iqtlabs/CRviz/master/sample_data/5000_s2.json"
}
]
2 changes: 1 addition & 1 deletion src/epics/load-dataset-epic.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const CSVconvert = (data) => {

//if we have a naked array or an object not containing a dataset instead of an object containing a dataset
//transfer the array into an object's dataset to maintain a consistent
//schema with what is used elsewhere see https://github.com/CyberReboot/CRviz/issues/33
//schema with what is used elsewhere see https://github.com/IQTLabs/CRviz/issues/33
const formatPayload = async (data) => {
const owner = data.owner;
const initialName = data.name;
Expand Down
2 changes: 1 addition & 1 deletion src/features/header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Header extends React.Component {
Copyright © 2017-2019 IQT Labs LLC.
</div>
<div className={ style.socialContainer }>
<a href="https://github.com/CyberReboot/" alt="github.com/CyberReboot" target="_blank" rel="noopener noreferrer">
<a href="https://github.com/IQTLabs/" alt="github.com/IQTLabs" target="_blank" rel="noopener noreferrer">
<FontAwesomeIcon color="#7d7d7d" icon={faGithub} />
</a>
<a href="https://twitter.com/_cyberreboot" alt="twitter.com/_cyberreboot" target="_blank" rel="noopener noreferrer">
Expand Down

0 comments on commit 0b03f0a

Please sign in to comment.