outline/README.md

164 lines
6.7 KiB
Markdown
Raw Normal View History

2020-04-05 17:00:30 -07:00
2017-12-27 14:23:41 +02: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 12:19:09 -08: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 14:23:41 +02:00
<br/>
2020-04-05 17:01:54 -07:00
<img src="https://user-images.githubusercontent.com/380914/78513257-153ae080-775f-11ea-9b49-1e1939451a3e.png" alt="Outline" width="800" />
2017-12-27 14:23:41 +02:00
</p>
<p align="center">
2018-09-29 22:28:28 -07: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 14:23:41 +02: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-09 18:59:49 -07: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>
2020-12-04 08:22:43 -08:00
<a href="https://translate.getoutline.com/project/outline"><img src="https://badges.crowdin.net/outline/localized.svg"></a>
2017-12-27 14:23:41 +02:00
</p>
2018-01-01 12:19:09 -08: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 14:23:41 +02: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 00:13:05 -07:00
2017-04-23 20:12:53 -07:00
## Installation
Outline requires the following dependencies:
2017-10-30 00:13:05 -07:00
2020-09-14 19:29:55 -07:00
- [Node.js](https://nodejs.org/) >= 12
- [Yarn](https://yarnpkg.com)
- [Postgres](https://www.postgresql.org/download/) >=9.5
- [Redis](https://redis.io/) >= 4
- AWS S3 bucket or compatible API for file storage
2019-07-07 09:29:56 -07:00
- Slack or Google developer application for authentication
2020-09-14 19:29:55 -07:00
### Production
For a manual self-hosted production installation these are the recommended steps:
2020-09-14 19:29:55 -07:00
1. First setup Redis and Postgres servers, this is outside the scope of the guide.
1. Download the latest official Docker image, new releases are available around the middle of every month:
`docker pull outlinewiki/outline`
1. Using the [.env.sample](.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`
1. Setup the database with `yarn sequelize: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 sequelize:migrate --env=production-ssl-disabled`, for example:
`docker run --rm outlinewiki/outline yarn sequelize:migrate`
1. Start the container:
`docker run outlinewiki/outline`
2020-09-14 19:29:55 -07:00
1. 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
1. (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.
2020-09-14 19:29:55 -07:00
2019-07-07 09:29:56 -07:00
### Development
2017-10-30 00:13:05 -07:00
2017-12-30 19:25:48 +02:00
In development you can quickly get an environment running using Docker by following these steps:
2017-10-30 00:13:05 -07: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 09:29:56 -07: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 08:57:21 -07: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 08:26:37 -07:00
1. `SLACK_SECRET` (this is called "Client Secret" in Slack admin)
2020-03-30 08:57:21 -07: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 09:29:56 -07:00
1. Run `make up`. This will download dependencies, build and launch a development version of Outline
2019-05-31 11:26:26 +08:00
### Upgrade
#### 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 sequelize:migrate
```
#### Yarn
If you're running Outline by cloning this repository, run the following command to upgrade:
```
yarn run upgrade
```
2019-05-31 11:26:26 +08:00
2017-11-10 15:24:29 -08:00
## Development
If you're interested in contributing or learning more about the Outline codebase
please refer to the [architecture document](ARCHITECTURE.md) first for a high level overview of how the application is put together.
## Debugging
2017-11-10 15:24:29 -08:00
2019-07-07 09:29:56 -07:00
Outline uses [debug](https://www.npmjs.com/package/debug). To enable debugging output, the following categories are available:
2017-11-10 15:24:29 -08:00
```
2019-07-07 09:29:56 -07:00
DEBUG=sql,cache,presenters,events,logistics,emails,mailer
2017-11-10 15:24:29 -08:00
```
2017-04-23 20:12:53 -07:00
## Tests
2019-07-07 09:29:56 -07: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 12:26:04 -08: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
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.
```shell
# 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
```
2017-12-27 14:23:41 +02:00
## Contributing
2019-07-07 09:29:56 -07:00
Outline is built and maintained by a small team we'd love your help to fix bugs and add features!
2017-12-27 14:23:41 +02:00
Before submitting 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 the [Discussions](https://www.github.com/outline/outline/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 your code being accepted.
2017-12-27 14:23:41 +02:00
If youre looking for ways to get started, here's a list of ways to help us improve Outline:
2017-12-27 14:23:41 +02:00
feat: I18n (#1653) * feat: i18n * Changing language single source of truth from TEAM to USER * Changes according to @tommoor comments on PR * Changed package.json for build:i18n and translation label * Finished 1st MVP of i18n for outline * new translation labels & Portuguese from Portugal translation * Fixes from PR request * Described language dropdown as an experimental feature * Set keySeparator to false in order to cowork with html keys * Added useTranslation to Breadcrumb * Repositioned <strong> element * Removed extra space from TemplatesMenu * Fortified the test suite for i18n * Fixed trans component problematic * Check if selected language is available * Update yarn.lock * Removed unused Trans * Removing debug variable from i18n init * Removed debug variable * test: update snapshots * flow: Remove decorator usage to get proper flow typing It's a shame, but hopefully we'll move to Typescript in the next 6 months and we can forget this whole Flow mistake ever happened * translate: Drafts * More translatable strings * Mo translation strings * translation: Search * async translations loading * cache translations in client * Revert "cache translations in client" This reverts commit 08fb61ce36384ff90a704faffe4761eccfb76da1. * Revert localStorage cache for cache headers * Update Crowdin configuration file * Moved translation files to locales folder and fixed english text * Added CONTRIBUTING File for CrowdIn * chore: Move translations again to please CrowdIn * fix: loading paths chore: Add strings for editor * fix: Improve validation on documents.import endpoint * test: mock bull * fix: Unknown mimetype should fallback to Markdown parsing if markdown extension (#1678) * closes #1675 * Update CONTRIBUTING * chore: Add link to translation portal from app UI * refactor: Centralize language config * fix: Ensure creation of i18n directory in build * feat: Add language prompt * chore: Improve contributing guidelines, add link from README * chore: Normalize tab header casing * chore: More string externalization * fix: Language prompt in dark mode Co-authored-by: André Glatzl <andreglatzl@gmail.com>
2020-11-29 20:04:58 -08:00
* [Translation](TRANSLATION.md) into other languages
2018-03-26 21:24:03 +05:30
* Issues with [`good first issue`](https://github.com/outline/outline/labels/good%20first%20issue) label
2017-12-27 14:23:41 +02:00
* Performance improvements, both on server and frontend
* Developer happiness and documentation
* Bugs and other issues listed on GitHub
2017-10-30 00:13:05 -07:00
## License
Outline is [BSL 1.1 licensed](LICENSE).