Skip to content

Commit 0ea64a5

Browse files
committedAug 9, 2024
fix remaining refs
1 parent 920e35f commit 0ea64a5

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
 

‎demo/dist/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@
5555
<div id="references">
5656
<div class="link-container">
5757
<a id="npm-link" target="_blank"
58-
href="https://www.npmjs.com/package/react-json-view">
58+
href="https://www.npmjs.com/package/@microlink/react-json-view">
5959
<img src="https://upload.wikimedia.org/wikipedia/commons/d/db/Npm-logo.svg"/>
6060
</a>
6161
</div>
6262
<div class="link-container">
6363
<a id="github-link" target="_blank"
64-
href="https://github.com/mac-s-g/react-json-view">
64+
href="https://github.com/microlinkhq/react-json-view">
6565
<img src="https://cdn4.iconfinder.com/data/icons/iconsimple-logotypes/512/github-512.png"/>
6666
</a>
6767
</div>

‎demo/src/js/components/Demo.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,17 @@ class Demo extends React.PureComponent {
6161
<div class="header-2">component demo</div>
6262
<img
6363
class="rjv-logo"
64-
src="https://github.com/mac-s-g/react-json-view/blob/master/doc/rjv-icon-alt.png?raw=true"
64+
src="https://raw.githubusercontent.com/microlinkhq/react-json-view/master/doc/rjv-icon-alt.png"
6565
onClick={() => {
6666
window.open(
67-
'https://github.com/mac-s-g/react-json-view',
67+
'https://github.com/microlinkhq/react-json-view',
6868
'_blank'
6969
);
7070
}}
7171
/>
7272
<GitHubButton
7373
type="stargazers"
74-
namespace="mac-s-g"
74+
namespace="microlinkhq"
7575
repo="react-json-view"
7676
/>
7777
</div>

‎docker/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,20 @@ for example, the container used with this project has the following composition:
5959

6060
the `Dockerfile` defines exactly how a container should be composed for an application. Any docker-integrated workflow starts here.
6161

62-
Here is the [RJV Dockerfile](https://github.com/mac-s-g/react-json-view/blob/master/Dockerfile)
62+
Here is the [RJV Dockerfile](https://github.com/microlinkhq/react-json-view/blob/master/Dockerfile)
6363

64-
Notice [here](https://github.com/mac-s-g/react-json-view/blob/master/Dockerfile#L1) that my container is built on top of a node container. If you track down that node container on docker-hub, you'll see that it's built on top of a debian container. Also notice that `node_modules` are installed directly into my container [here](https://github.com/mac-s-g/react-json-view/blob/master/Dockerfile#L6-L7).
64+
Notice [here](https://github.com/microlinkhq/react-json-view/blob/master/Dockerfile#L1) that my container is built on top of a node container. If you track down that node container on docker-hub, you'll see that it's built on top of a debian container. Also notice that `node_modules` are installed directly into my container [here](https://github.com/microlinkhq/react-json-view/blob/master/Dockerfile#L6-L7).
6565

6666
When I run `./docker/build-container.sh`, docker produces a container including all the `node_modules` listed in my `package.json` file.
6767

6868
When I run `./docker/dev-server.sh`, a few things happen:
69-
1. docker [runs my container and mounts some source files](https://github.com/mac-s-g/react-json-view/blob/master/docker/dev-server.sh#L16-L20) into the container
69+
1. docker [runs my container and mounts some source files](https://github.com/microlinkhq/react-json-view/blob/master/docker/dev-server.sh#L16-L20) into the container
7070
* "mounting" is like a soft copy. my files are linked inside the container's file system so local edits propagate to the container.
71-
2. docker [exposes a port](https://github.com/mac-s-g/react-json-view/blob/master/docker/dev-server.sh#L23) on the container
71+
2. docker [exposes a port](https://github.com/microlinkhq/react-json-view/blob/master/docker/dev-server.sh#L23) on the container
7272
* this allows me to configure my app to listen and respond to to traffic at http://localhost:2000
7373
* the port is arbitrary
74-
3. An [entrypoint will be invoked](https://github.com/mac-s-g/react-json-view/blob/master/docker/dev-server.sh#L24) once the container is running
75-
* With my container up and running, the [entrypoint simply runs webpack dev server](https://github.com/mac-s-g/react-json-view/blob/master/entrypoints/dev-server.sh#L6).
74+
3. An [entrypoint will be invoked](https://github.com/microlinkhq/react-json-view/blob/master/docker/dev-server.sh#L24) once the container is running
75+
* With my container up and running, the [entrypoint simply runs webpack dev server](https://github.com/microlinkhq/react-json-view/blob/master/entrypoints/dev-server.sh#L6).
7676

7777
If you understand those steps, then you'll understand any of the docker scripts in `/docker/`. They do the same thing as the dev-server script but call different entrypoints.
7878

0 commit comments

Comments
 (0)
Please sign in to comment.