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 2316512a19
Update crowdin.yml
2020-11-30 19:09:41 -08:00
.circleci chore: No need to build:server on CI 2020-09-30 20:29:54 -07:00
.github Create auto_assign.yml 2020-11-27 09:51:52 -08:00
.vscode flow 2020-08-08 17:12:36 -07:00
__mocks__ flow 2020-11-27 09:48:10 -08:00
app feat: I18n (#1653) 2020-11-29 20:04:58 -08:00
flow-typed feat: I18n (#1653) 2020-11-29 20:04:58 -08:00
public feat: Add ClickUp Embed Service (#1465) 2020-09-04 13:21:27 -07:00
server feat: I18n (#1653) 2020-11-29 20:04:58 -08:00
shared feat: I18n (#1653) 2020-11-29 20:04:58 -08:00
.babelrc perf: Reduce initial bundle size / async bundle loading (#1456) 2020-08-14 17:23:58 -07:00
.dockerignore perf: Improving dockerfile 2020-09-05 12:44:40 -07:00
.env.sample feat: I18n (#1653) 2020-11-29 20:04:58 -08: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 flow 2020-08-08 17:12:36 -07:00
.gitignore feat: Visually differentiate unread documents (#1507) 2020-09-20 22:32:28 -07:00
.sequelizerc rm localenv 2017-07-06 23:27:16 -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 2020-11-14 23:10:16 -08: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 feat: I18n (#1653) 2020-11-29 20:04:58 -08: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 chore: Introduce AWS_S3_FORCE_PATH_STYLE option to maintain compatability with Minio et al (#1443) 2020-08-24 23:27:10 -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 feat: I18n (#1653) 2020-11-29 20:04:58 -08:00
setupJest.js Upgrade Dependencies (#873) 2019-01-21 11:06:44 -08:00
webpack.config.dev.js perf: Reduce initial bundle size / async bundle loading (#1456) 2020-08-14 17:23:58 -07:00
webpack.config.js refactor: Remove babel/register for instant production server startup 2020-08-23 19:10:16 -07:00
webpack.config.prod.js refactor: Remove babel/register for instant production server startup 2020-08-23 19:10:16 -07:00
yarn.lock feat: I18n (#1653) 2020-11-29 20:04:58 -08: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.

Outline

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

Production

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

  1. Clone this repo and install dependencies with yarn install

  2. Build the source code with yarn build

  3. Using the .env.sample as a reference, set the required variables in your production environment. The following are required as a minimum:

    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)
    4. DATABASE_URL (run your own local copy of Postgres, or use a cloud service)
    5. REDIS_URL (run your own local copy of Redis, or use a cloud service)
    6. URL (the public facing URL of your installation)
    7. AWS_ (all of the keys beginning with AWS)
  4. Migrate database schema with yarn sequelize:migrate. Production assumes an SSL connection, if Postgres is on the same machine and is not SSL you can migrate with yarn sequelize:migrate --env=production-ssl-disabled.

  5. Start the service with any daemon tools you prefer. Take PM2 for example, NODE_ENV=production pm2 start ./build/server/index.js --name 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 reverse proxy to serve your instance of Outline for a clean URL without the port number, support SSL, etc.

Development

In development you can quickly get an environment running using Docker by following these steps:

  1. Install these dependencies if you don't already have them
  2. Docker for Desktop
  3. Node.js (v12 LTS preferred)
  4. Yarn
  5. Clone this repo
  6. Register a Slack app at https://api.slack.com/apps
  7. Copy the file .env.sample to .env
  8. 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)
  9. Configure your Slack app's Oauth & Permissions settings
    1. Add http://localhost:3000/auth/slack.callback as an Oauth redirect URL
    2. Ensure that the bot token scope contains at least users:read
  10. Run make up. This will download dependencies, build and launch a development version of Outline

Development

Server

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

DEBUG=sql,cache,presenters,events,logistics,emails,mailer

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

Structure

Outline is composed of separate backend and frontend application which are both driven by the same Node process. As both are written in Javascript, they share some code but are mostly separate. We utilize the latest language features, including async/await, and Flow typing. Prettier and ESLint are enforced by CI.

Frontend

Outline's frontend is a React application compiled with Webpack. It uses Mobx for state management and Styled Components for component styles. Unless global, state logic and styles are always co-located with React components together with their subcomponents to make the component tree easier to manage.

The editor itself is built on Prosemirror and hosted in a separate repository to encourage reuse: rich-markdown-editor

  • app/ - Frontend React application
  • app/scenes - Full page views
  • app/components - Reusable React components
  • app/stores - Global state stores
  • app/models - State models
  • app/types - Flow types for non-models

Backend

Backend is driven by Koa (API, web server), Sequelize (database) and React for public pages and emails.

  • server/api - API endpoints
  • server/commands - Domain logic, currently being refactored from /models
  • server/emails - React rendered email templates
  • server/models - Database models
  • server/policies - Authorization logic
  • server/presenters - API responses for database models
  • server/test - Test helps and support
  • server/utils - Utility methods
  • shared - Code shared between frontend and backend applications

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

Contributing

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

However, before working on 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 and will hopefully help to get your contributions integrated faster!

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

License

Outline is BSL 1.1 licensed.