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.
outline/README.md

170 lines
7.7 KiB
Markdown
Raw Normal View History

2020-04-06 00:00:30 +00:00
2017-12-27 12:23:41 +00:00
<p align="center">
<img src="https://user-images.githubusercontent.com/31465/34380645-bd67f474-eb0b-11e7-8d03-0151c1730654.png" height="29" />
</p>
<p align="center">
2018-01-01 20:19:09 +00:00
<i>An open, extensible, wiki for your team built using React and Node.js.<br/>Try out Outline using our hosted version at <a href="https://www.getoutline.com">www.getoutline.com</a>.</i>
2017-12-27 12:23:41 +00:00
<br/>
2020-04-06 00:01:54 +00:00
<img src="https://user-images.githubusercontent.com/380914/78513257-153ae080-775f-11ea-9b49-1e1939451a3e.png" alt="Outline" width="800" />
2017-12-27 12:23:41 +00:00
</p>
<p align="center">
2018-09-30 05:28:28 +00:00
<a href="https://circleci.com/gh/outline/outline" rel="nofollow"><img src="https://circleci.com/gh/outline/outline.svg?style=shield&amp;circle-token=c0c4c2f39990e277385d5c1ae96169c409eb887a"></a>
2017-12-27 12:23:41 +00:00
<a href="https://github.com/prettier/prettier"><img src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat"></a>
2018-06-10 01:59:49 +00:00
<a href="https://github.com/styled-components/styled-components"><img src="https://img.shields.io/badge/style-%F0%9F%92%85%20styled--components-orange.svg"></a>
2017-12-27 12:23:41 +00:00
</p>
2018-01-01 20:19:09 +00:00
This is the source code that runs [**Outline**](https://www.getoutline.com) 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](https://www.getoutline.com).
2017-12-27 12:23:41 +00:00
If you'd like to run your own copy of Outline or contribute to development then this is the place for you.
2017-10-30 07:13:05 +00:00
2017-04-24 03:12:53 +00:00
## Installation
Outline requires the following dependencies:
2017-10-30 07:13:05 +00:00
- Node.js >= 12
2017-10-30 07:13:05 +00:00
- Postgres >=9.5
2019-12-06 00:52:32 +00:00
- Redis >= 4
2019-05-31 03:26:26 +00:00
- AWS S3 storage bucket for media and other attachments
2019-07-07 16:29:56 +00:00
- Slack or Google developer application for authentication
### Development
2017-10-30 07:13:05 +00:00
2017-12-30 17:25:48 +00:00
In development you can quickly get an environment running using Docker by following these steps:
2017-10-30 07:13:05 +00:00
1. Install these dependencies if you don't already have them
1. [Docker for Desktop](https://www.docker.com)
1. [Node.js](https://nodejs.org/) (v12 LTS preferred)
1. [Yarn](https://yarnpkg.com)
2019-07-07 16:29:56 +00:00
1. Clone this repo
1. Register a Slack app at https://api.slack.com/apps
1. Copy the file `.env.sample` to `.env`
1. Fill out the following fields:
2020-03-30 15:57:21 +00:00
1. `SECRET_KEY` (follow instructions in the comments at the top of `.env`)
1. `SLACK_KEY` (this is called "Client ID" in Slack admin)
2020-03-30 15:26:37 +00:00
1. `SLACK_SECRET` (this is called "Client Secret" in Slack admin)
2020-03-30 15:57:21 +00:00
1. Configure your Slack app's Oauth & Permissions settings
1. Add `http://localhost:3000/auth/slack.callback` as an Oauth redirect URL
1. Ensure that the bot token scope contains at least `users:read`
2019-07-07 16:29:56 +00:00
1. Run `make up`. This will download dependencies, build and launch a development version of Outline
2019-05-31 03:26:26 +00:00
2019-07-07 16:29:56 +00:00
### Production
2019-05-31 03:26:26 +00:00
2019-07-07 16:29:56 +00:00
For a self-hosted production installation there is more flexibility, but these are the suggested steps:
2019-05-31 03:26:26 +00:00
2019-07-07 16:29:56 +00:00
1. Clone this repo and install dependencies with `yarn` or `npm install`
2019-05-31 03:26:26 +00:00
> Requires [Node.js](https://nodejs.org/) and [yarn](https://yarnpkg.com) installed
2019-05-31 03:26:26 +00:00
2019-07-07 16:29:56 +00:00
1. Build the web app with `yarn build:webpack` or `npm run build:webpack`
1. Using the `.env.sample` as a reference, set the required variables in your production environment. The following are required as a minimum:
2020-03-30 15:26:37 +00:00
1. `SECRET_KEY` (follow instructions in the comments at the top of `.env`)
2019-07-07 16:29:56 +00:00
1. `SLACK_KEY` (this is called "Client ID" in Slack admin)
2020-03-30 15:26:37 +00:00
1. `SLACK_SECRET` (this is called "Client Secret" in Slack admin)
2019-07-07 16:29:56 +00:00
1. `DATABASE_URL` (run your own local copy of Postgres, or use a cloud service)
1. `REDIS_URL` (run your own local copy of Redis, or use a cloud service)
1. `URL` (the public facing URL of your installation)
1. `AWS_` (all of the keys beginning with AWS)
1. Migrate database schema with `yarn sequelize:migrate` or `npm run sequelize:migrate `
1. Start the service with any daemon tools you prefer. Take PM2 for example, `NODE_ENV=production pm2 start index.js --name outline `
1. Visit http://you_server_ip:3000 and you should be able to see Outline page
2019-05-31 03:26:26 +00:00
> Port number can be changed in the `.env` file
2019-07-07 16:29:56 +00:00
1. (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.
2019-05-31 03:26:26 +00:00
2017-11-10 23:24:29 +00:00
## Development
### Server
2019-07-07 16:29:56 +00:00
Outline uses [debug](https://www.npmjs.com/package/debug). To enable debugging output, the following categories are available:
2017-11-10 23:24:29 +00:00
```
2019-07-07 16:29:56 +00:00
DEBUG=sql,cache,presenters,events,logistics,emails,mailer
2017-11-10 23:24:29 +00:00
```
2017-04-24 03:12:53 +00:00
## Migrations
2016-02-27 21:53:11 +00:00
Sequelize is used to create and run migrations, for example:
```
2019-07-07 16:29:56 +00:00
yarn sequelize migration:generate --name my-migration
2017-10-16 01:35:28 +00:00
yarn sequelize db:migrate
2017-06-27 06:33:05 +00:00
```
Or to run migrations on test database:
```
2017-10-16 01:36:22 +00:00
yarn sequelize db:migrate --env test
```
2017-10-30 07:13:05 +00:00
2017-12-27 12:23:41 +00:00
## Structure
2019-07-07 16:29:56 +00:00
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](https://flow.org/) typing. Prettier and ESLint are enforced by CI.
2017-12-27 12:23:41 +00:00
### Frontend
2018-05-19 21:34:54 +00:00
Outline's frontend is a React application compiled with [Webpack](https://webpack.js.org/). It uses [Mobx](https://mobx.js.org/) for state management and [Styled Components](https://www.styled-components.com/) 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 ontop of [Slate](https://github.com/ianstormtaylor/slate) and hosted in a separate repository to encourage reuse: [rich-markdown-editor](https://github.com/outline/rich-markdown-editor)
2017-12-27 12:23:41 +00:00
- `app/` - Frontend React application
- `app/scenes` - Full page views
2017-12-30 17:25:48 +00:00
- `app/components` - Reusable React components
2017-12-27 12:23:41 +00:00
- `app/stores` - Global state stores
- `app/models` - State models
- `app/types` - Flow types for non-models
### Backend
Backend is driven by [Koa](http://koajs.com/) (API, web server), [Sequelize](http://docs.sequelizejs.com/) (database) and React for public pages and emails.
- `server/api` - API endpoints
2019-07-07 16:29:56 +00:00
- `server/commands` - Domain logic, currently being refactored from /models
2017-12-27 12:23:41 +00:00
- `server/emails` - React rendered email templates
2019-07-07 16:29:56 +00:00
- `server/models` - Database models
- `server/pages` - Server-side rendered public pages
- `server/policies` - Authorization logic
2017-12-27 12:23:41 +00:00
- `server/presenters` - API responses for database models
2019-07-07 16:29:56 +00:00
- `server/test` - Test helps and support
- `server/utils` - Utility methods
2017-12-27 12:23:41 +00:00
- `shared` - Code shared between frontend and backend applications
## Tests
2019-07-07 16:29:56 +00:00
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.
2018-01-01 20:26:04 +00:00
To add new tests, write your tests with [Jest](https://facebook.github.io/jest/) and add a file with `.test.js` extension next to the tested code.
```shell
# To run all tests
yarn test
# To run backend tests
yarn test:server
# To run frontend tests
yarn test:app
```
2017-12-27 12:23:41 +00:00
## Contributing
2019-07-07 16:29:56 +00:00
Outline is built and maintained by a small team we'd love your help to fix bugs and add features!
2017-12-27 12:23:41 +00:00
2019-12-16 05:21:27 +00:00
However, before working on a pull request please let the core team know by creating or commenting in an issue on [GitHub](https://www.github.com/outline/outline/issues), and we'd also love to hear from you in our [Spectrum community](https://spectrum.chat/outline). 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!
2017-12-27 12:23:41 +00:00
If youre looking for ways to get started, here's a list of ways to help us improve Outline:
2017-12-27 12:23:41 +00:00
2018-03-26 15:54:03 +00:00
* Issues with [`good first issue`](https://github.com/outline/outline/labels/good%20first%20issue) label
2017-12-27 12:23:41 +00:00
* Performance improvements, both on server and frontend
* Developer happiness and documentation
* Bugs and other issues listed on GitHub
* Helping others on Spectrum
2017-10-30 07:13:05 +00:00
## License
2020-03-14 03:15:57 +00:00
Outline is [BSL 1.1 licensed](https://github.com/outline/outline/blob/master/LICENSE).