UPSTREAMED: outline with this patch integrated: https://github.com/outline/outline/pull/2659
This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Tom Moor 0e7d352781
chore: Add fetch-retry, remove isomorphic-fetch (#2297)
* chore: Add fetch-retry, remove isomorphic-fetch

closes #2270

* test: Mock fetch
2021-07-09 04:07:18 -07:00
.circleci chore: No need to build:server on CI 2020-09-30 20:29:54 -07:00
.github Update stale.yml 2021-06-04 09:11:09 -07:00
.vscode chore: Upgrade flow (#1854) 2021-01-29 21:36:09 -08:00
__mocks__ flow 2020-11-27 09:48:10 -08:00
app chore: Add fetch-retry, remove isomorphic-fetch (#2297) 2021-07-09 04:07:18 -07:00
flow-typed fix: Link copied to clipboard takes dark mode styles (#2218) 2021-06-12 15:44:58 -07:00
public feat: Add 'Descript' embed (#2144) 2021-05-22 19:21:56 -07:00
server feat: Add documentId filter to events.list (#2287) 2021-07-08 10:12:06 -07:00
shared feat: Enable Japanese translations (#2282) 2021-07-08 18:32:05 -07:00
.babelrc fix: URLSearchParams polyfill via core-js upgrade (#2059) 2021-04-22 18:21:27 -07:00
.dockerignore perf: Improving dockerfile 2020-09-05 12:44:40 -07:00
.env.sample feat: Add TLS ciphers option (#2217) 2021-06-15 21:37:41 -07:00
.eslintignore Lint rules and flow annotations for rest of the files 2017-11-15 23:40:14 -08:00
.eslintrc refactor: Remove old react lifecycle methods (#1480) 2020-08-23 11:51:56 -07:00
.flowconfig chore: Add flow support for M1 macs 2021-01-28 23:25:37 -08:00
.gitignore chore: Migrate authentication to new tables (#1929) 2021-03-09 12:22:08 -08:00
.sequelizerc rm localenv 2017-07-06 23:27:16 -07:00
ARCHITECTURE.md feat: authenticationProviders API endpoints (#1962) 2021-03-26 11:31:07 -07:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2018-02-18 19:18:44 -08:00
Dockerfile fix: Unable to run migrations in latest image. Added option to run non-SSL migration in production 2020-09-27 10:32:08 -07:00
LICENSE Update LICENSE 2021-04-23 12:50:19 -07:00
Makefile chore: Drop and create test database automatically between runs 2020-11-11 16:58:45 -08:00
Procfile fix: Update procfile location 2020-08-23 19:21:43 -07:00
README.md documentation: Instructions for local development (#2180) 2021-06-07 18:11:45 -07:00
SECURITY.md Create SECURITY.md 2019-10-26 22:14:46 -07:00
TRANSLATION.md feat: I18n (#1653) 2020-11-29 20:04:58 -08:00
app.json feat: Add TLS ciphers option (#2217) 2021-06-15 21:37:41 -07:00
crowdin.yml Update crowdin.yml 2020-11-30 19:09:41 -08:00
docker-compose.yml chore: Improve performance in dev by running Node/Yarn outside of docker (#1271) 2020-05-17 18:12:48 -07:00
i18next-parser.config.js feat: I18n (#1653) 2020-11-29 20:04:58 -08:00
package.json chore: Add fetch-retry, remove isomorphic-fetch (#2297) 2021-07-09 04:07:18 -07:00
webpack.config.dev.js chore: Faster source map in dev 2021-04-22 18:59:59 -07:00
webpack.config.js chore: Add fetch-retry, remove isomorphic-fetch (#2297) 2021-07-09 04:07:18 -07:00
webpack.config.prod.js fix: Restore DNS prefetching for static resources (#1820) 2021-01-18 15:48:46 -08:00
yarn.lock chore: Add fetch-retry, remove isomorphic-fetch (#2297) 2021-07-09 04:07:18 -07:00

README.md

An open, extensible, wiki for your team built using React and Node.js.
Try out Outline using our hosted version at www.getoutline.com.

screenshot

This is the source code that runs Outline and all the associated services. If you want to use Outline then you don't need to run this code, we offer a hosted version of the app at getoutline.com.

If you'd like to run your own copy of Outline or contribute to development then this is the place for you.

Installation

Outline requires the following dependencies:

  • Node.js >= 12
  • Yarn
  • Postgres >=9.5
  • Redis >= 4
  • AWS S3 bucket or compatible API for file storage
  • Slack or Google developer application for authentication

Self-Hosted Production

Docker

For a manual self-hosted production installation these are the recommended steps:

  1. First setup Redis and Postgres servers, this is outside the scope of the guide.

  2. Download the latest official Docker image, new releases are available around the middle of every month:

    docker pull outlinewiki/outline

  3. Using the .env.sample as a reference, set the required variables in your production environment. You can export the environment variables directly, or create a .env file and pass it to the docker image like so:

    docker run --env-file=.env outlinewiki/outline

  4. Setup the database with yarn db:migrate. Production assumes an SSL connection to the database by default, if Postgres is on the same machine and is not SSL you can migrate with yarn db:migrate --env=production-ssl-disabled, for example:

    docker run --rm outlinewiki/outline yarn db:migrate

  5. Start the container:

    docker run outlinewiki/outline

  6. Visit http://you_server_ip:3000 and you should be able to see Outline page

    Port number can be changed using the PORT environment variable

  7. (Optional) You can add an nginx or other reverse proxy to serve your instance of Outline for a clean URL without the port number, support SSL, etc.

Terraform

Alternatively a community member maintains a script to deploy Outline on Google Cloud Platform with Terraform & Ansible.

Upgrading

Docker

If you're running Outline with Docker you'll need to run migrations within the docker container after updating the image. The command will be something like:

docker run --rm outlinewiki/outline:latest yarn db:migrate

Git

If you're running Outline by cloning this repository, run the following command to upgrade:

yarn run upgrade

Local Development

For contributing features and fixes you can quickly get an environment running using Docker by following these steps:

  1. Install these dependencies if you don't already have them
    1. Docker for Desktop
    2. Node.js (v12 LTS preferred)
    3. Yarn
  2. Clone this repo
  3. Register a Slack app at https://api.slack.com/apps
  4. Copy the file .env.sample to .env
  5. Fill out the following fields:
    1. SECRET_KEY (follow instructions in the comments at the top of .env)
    2. SLACK_KEY (this is called "Client ID" in Slack admin)
    3. SLACK_SECRET (this is called "Client Secret" in Slack admin)
  6. Configure your Slack app's Oauth & Permissions settings
    1. Slack recently prevented the use of http protocol for localhost. For local development, you can use a tool like ngrok or a package like mkcert. (How to use HTTPS for local development)
    2. Add https://my_ngrok_address/auth/slack.callback as an Oauth redirect URL
    3. Ensure that the bot token scope contains at least users:read
  7. Run make up. This will download dependencies, build and launch a development version of Outline

Contributing

Outline is built and maintained by a small team we'd love your help to fix bugs and add features!

Before submitting a pull request please let the core team know by creating or commenting in an issue on GitHub, and we'd also love to hear from you in the Discussions. This way we can ensure that an approach is agreed on before code is written. This will result in a much higher liklihood of code being accepted.

If youre looking for ways to get started, here's a list of ways to help us improve Outline:

  • Translation into other languages
  • Issues with good first issue label
  • Performance improvements, both on server and frontend
  • Developer happiness and documentation
  • Bugs and other issues listed on GitHub

Architecture

If you're interested in contributing or learning more about the Outline codebase please refer to the architecture document first for a high level overview of how the application is put together.

Debugging

Outline uses debug. To enable debugging output, the following categories are available:

DEBUG=sql,cache,presenters,events,importer,exporter,emails,mailer

Tests

We aim to have sufficient test coverage for critical parts of the application and aren't aiming for 100% unit test coverage. All API endpoints and anything authentication related should be thoroughly tested.

To add new tests, write your tests with Jest and add a file with .test.js extension next to the tested code.

# To run all tests
make test

# To run backend tests in watch mode
make watch

Once the test database is created with make test you may individually run frontend and backend tests directly.

# To run backend tests
yarn test:server

# To run frontend tests
yarn test:app

Migrations

Sequelize is used to create and run migrations, for example:

yarn sequelize migration:generate --name my-migration
yarn sequelize db:migrate

Or to run migrations on test database:

yarn sequelize db:migrate --env test

License

Outline is BSL 1.1 licensed.