Outline Server, developed by Jigsaw. The Outline Server is a proxy server that runs a Shadowsocks instance and provides a REST API for access key management. https://getoutline.org/
Find a file
Ben Schwartz 23e0600898 Remove lingering mentions of Bower
Bower is no longer used
2021-02-22 14:31:02 -05:00
.github/workflows Download a pinned version of Shellcheck 2021-02-18 21:52:28 -05:00
scripts Remove lingering mentions of Bower 2021-02-22 14:31:02 -05:00
src Remove lingering mentions of Bower 2021-02-22 14:31:02 -05:00
third_party DOWNLOAD -> DOWNLOAD_DIR 2021-02-19 13:57:53 -05:00
.clang-format import code 2018-03-14 17:52:39 -04:00
.dockerignore Add .dockerignore 2018-05-30 23:35:11 -04:00
.gitignore Remove lingering mentions of Bower 2021-02-22 14:31:02 -05:00
.shellcheckrc Require scripts to be shellcheck-compliant 2021-02-17 11:57:32 -05:00
.travis.yml CI Updates (#804) 2021-02-09 13:34:32 -05:00
CONTRIBUTING.md import code 2018-03-14 17:52:39 -04:00
jasmine.json Fix unit tests (#693) 2020-06-22 16:32:48 -04:00
LICENSE import code 2018-03-14 17:52:39 -04:00
macos-signing-certificate.p12.enc Sign macOS manager on Travis (#12) 2018-03-23 14:08:27 -04:00
package.json Remove lingering mentions of Bower 2021-02-22 14:31:02 -05:00
README.md Remove lingering mentions of Bower 2021-02-22 14:31:02 -05:00
tsconfig.json Ensure that Karma and Electron use the same Chromium version (#803) 2021-02-01 13:04:56 -05:00
tslint.json Clear unused imports and variables (#473) 2019-08-21 14:21:30 -04:00
yarn.lock bump ssconfig version 2021-02-19 14:10:09 -05:00

Outline Server

Build Status

This repository has all the code needed to create and manage Outline servers on DigitalOcean. An Outline server runs instances of Shadowsocks proxies and provides an API used by the Outline Manager application.

Go to https://getoutline.org for ready-to-use versions of the software.

Components

The system comprises the following components:

  • Outline Server: a proxy server that runs a Shadowsocks instance for each access key and a REST API to manage the access keys. The Outline Server runs in a Docker container in the host machine.

    See src/shadowbox

  • Outline Manager: an Electron application that can create Outline Servers on the cloud and talks to their access key management API to manage who has access to the server.

    See src/server_manager

  • Metrics Server: a REST service that the Outline Server talks to if the user opts-in to anonymous metrics sharing.

    See src/metrics_server

Code Prerequisites

In order to build and run the code, you need the following installed:

  • Node
  • Yarn
  • Wine, if you would like to generate binaries for Windows.

Then you need to install all the NPM package dependencies:

yarn

This project uses Yarn workspaces.

Build System

We have a very simple build system based on package.json scripts that are called using yarn and a thin wrapper for what we call build "actions".

We've defined a do package.json script that takes an action parameter:

yarn do $ACTION

This command will define a do_action() function and call ${ACTION}_action.sh, which must exist. The called action script can use do_action to call its dependencies. The $ACTION parameter is always resolved from the project root, regardless of the caller location.

The idea of do_action is to keep the build logic next to where the relevant code is. It also defines two environmental variables:

  • ROOT_DIR: the root directory of the project, as an absolute path.
  • BUILD_DIR: where the build output should go, as an absolute path.

Build output

Building creates the following directories under build/:

  • web_app/: The Manager web app.
    • static/: The standalone web app static files. This is what one deploys to a web server or runs with Electron.
  • electron_app/: The launcher desktop Electron app
    • static/: The Manager Electron app to run with the electron command-line
    • bundled/: The Electron app bundled to run standalone on each platform
    • packaged/: The Electron app bundles packaged as single files for distribution
  • invite_page: the Invite Page
    • static: The standalone static files to be deployed
  • shadowbox: The Proxy Server

The directories have subdirectories for intermediate output:

  • ts/: Autogenerated Typescript files
  • js/: The output from compiling Typescript code
  • browserified/: The output of browserifying the JavaScript code

To clean up:

yarn run clean