A React-based client application for Shlink
Find a file
MartinH0 86fb8b3f7c
Added FavIcons
Added .gif and .png FavIcon
2019-11-09 19:38:50 +01:00
.github Added github funding 2019-10-22 19:33:59 +02:00
config Added json extension to the list of known static files that have to fall back to 404 on nginx 2019-10-21 18:49:47 +02:00
dist Created dist dir 2018-08-05 11:39:49 +02:00
public Added FavIcons 2019-11-09 19:38:50 +01:00
scripts Updated dev dependencies 2019-10-05 19:08:50 +02:00
src Fixed outdated comment 2019-10-21 19:45:35 +02:00
test Ensured response from servers.json has been parsed to a json array 2019-10-21 19:38:32 +02:00
.dockerignore Dockerignored .gihub folder 2019-04-11 22:03:53 +02:00
.eslintrc Updated charts to allow optional pagination 2019-03-10 08:28:14 +01:00
.gitignore Catched error when loading servers from a servers.json file 2019-04-28 13:07:55 +02:00
.scrutinizer.yml Updated node version in which builds are run 2019-10-05 19:58:27 +02:00
.stylelintrc Added stylelint config 2018-08-25 10:22:25 +02:00
.travis.yml Updated node version in which builds are run 2019-10-05 19:58:27 +02:00
CHANGELOG.md Updated changelog 2019-10-21 19:39:59 +02:00
docker-compose.override.yml.dist Replaced yarn by npm 2019-04-14 21:58:10 +02:00
docker-compose.yml Updated docker image versions 2019-10-05 19:26:06 +02:00
Dockerfile Updated docker image versions 2019-10-05 19:26:06 +02:00
indocker Created Storage service test 2018-12-19 20:43:55 +01:00
jest.config.js Updated coding styles and test configs 2019-01-05 23:16:13 +01:00
LICENSE Happy 2019! 2019-01-05 08:42:34 +01:00
package-lock.json Updated dev dependencies 2019-10-05 19:08:50 +02:00
package.json Updated dev dependencies 2019-10-05 19:08:50 +02:00
README.md Mentioned that pre-configured servers won't work on versions previous to 2.1.0 2019-04-28 17:53:35 +02:00
stryker.conf.js Updated travis to run mutations on changed files only 2019-04-22 10:04:41 +02:00

shlink-web-client

Build Status Docker build status Code Coverage Scrutinizer Code Quality GitHub release GitHub license Paypal Donate

A ReactJS-based progressive web application for Shlink.

Installation

There are three ways in which you can use this application.

  • The easiest way to use shlink-web-client is by just going to https://app.shlink.io.

    The application runs 100% in the browser, so you can safely access any shlink instance from there.

  • Self hosting the application yourself.

    Get the latest release and download the distributable zip file attached to it (shlink-web-client_X.X.X_dist.zip).

    The package contains static files only, so just put it in a folder and serve it with the web server of your choice.

    Provided dist files are configured to be served from the root of your domain. If you need to serve shlink-web-client from a subpath, you will have to build it yourself following these steps.

  • Using the official docker image

    If you want to deploy shlink-web-client in a container-based cluster (kubernetes, docker swarm, etc), just pick the shlinkio/shlink-web-client image and do it.

    It's a lightweight nginx:alpine image serving the static app on port 80.

Pre-configuring servers

The first time you access shlink-web-client from a browser, you will have to configure the list of shlink servers you want to manage, and they will be saved in the local storage.

Those servers can be exported and imported in other browsers, but if for some reason you need some servers to be there from the beginning, starting with shlink-web-client 2.1.0, you can provide a servers.json file in the project root folder (the same containing the index.html, favicon.ico, etc) with a structure like this:

[
  {
    "name": "Main server",
    "url": "https://doma.in",
    "apiKey": "09c972b7-506b-49f1-a19a-d729e22e599c"
  },
  {
    "name": "Local",
    "url": "http://localhost:8080",
    "apiKey": "580d0b42-4dea-419a-96bf-6c876b901451"
  }
]

The list can contain as many servers as you need.

If you are using the shlink-web-client docker image, you can mount the servers.json file in a volume inside /usr/share/nginx/html, which is the app's document root inside the container.

docker run --name shlink-web-client -p 8000:80 -v ${PWD}/servers.json:/usr/share/nginx/html/servers.json shlinkio/shlink-web-client

Serve project in subpath

Official distributable files have been built so that they are served from the root of a domain.

If you need to host shlink-web-client yourself and serve it from a subpath, follow these steps:

  • Download shlink-web-client source code for the version you want to build.
  • Decompress the file and cd into the resulting folder.
  • Open the package.json file in the root of the project, locate the homepage property and replace the value (which should be an empty string) by the path from which you want to serve shlink-web-client.
    • For example: "homepage": "/my-projects/shlink-web-client",.
  • Build the project:
    • For classic hosting:
      • Download node 10.15 or later.
      • Install project dependencies by running npm install.
      • Build the project by running npm run build.
      • Once the command finishes, you will have a build folder with all the static assets you need to run shlink-web-client. Just place them wherever you want them to be served from.
    • For docker image:
      • Download docker.
      • Build the docker image by running docker build . -t shlink-web-client.
      • Once the command finishes, you will have an image with the name shlink-web-client.