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 4f4e55d120 Fixes: New document creation 2019-01-19 18:14:10 -08:00
.circleci Move to CircleCI 2.0 2018-07-27 20:26:30 -07:00
.githooks/pre-commit Run flow on recommit 2017-05-11 17:24:47 -07:00
.github Added welcome bot too :) 2018-02-10 16:38:42 -08:00
__mocks__ DocumentsStore WIP 2017-06-27 20:59:53 -07:00
app Fixes: New document creation 2019-01-19 18:14:10 -08:00
flow-typed Upgrade Editor – Slate 0.44 / RME 8.0.0 (#863) 2019-01-18 22:44:31 -08:00
public Add Prezi to integrations page 2019-01-11 21:40:01 -08:00
server User Profile (#858) 2019-01-12 19:41:45 -08:00
shared Remove parse-domain dependency (#856) 2019-01-12 13:50:30 -08:00
.babelrc lint 2018-01-03 21:39:32 -08:00
.env.sample Closes #827 – Add optional github access token 2018-12-24 10:36:17 -08:00
.eslintignore Lint rules and flow annotations for rest of the files 2017-11-15 23:40:14 -08:00
.eslintrc Upgrade Editor – Slate 0.44 / RME 8.0.0 (#863) 2019-01-18 22:44:31 -08:00
.flowconfig Upgrade to Flow 0.71 2018-05-05 16:16:08 -07:00
.gitignore service -> serviceId 2018-06-01 15:13:05 -04: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 Move PATH and NODE_ENV under Dockerfile. Fixes problem with PATH in 2018-08-14 08:04:52 +03:00
LICENSE Renamed Atlas to Outline 2017-11-09 00:20:22 -08:00
Makefile Added delete endpoint 2018-05-13 00:28:31 -07:00
Procfile Heroic deploy settings 2016-05-22 22:22:14 -07:00
README.md Fixed broken License link in Readme 2019-01-16 15:47:18 +05:30
app.json Heroku deploy support (#861) 2019-01-15 19:04:03 -08:00
docker-compose.yml Basic functionality in place, need improved errors and logged in redirect 2018-11-08 21:05:07 -08:00
index.js Prevent signin without hosted domain 2018-05-28 22:32:36 -07:00
init.js Fixes #363 2017-10-30 21:45:37 -07:00
package.json Closes #868 2019-01-19 13:11:11 -08:00
setupJest.js getUrl -> url consistency 2018-11-08 21:05:07 -08:00
webpack.config.dev.js Added link=“prefetch” tags 2018-01-21 22:25:37 -08:00
webpack.config.js Ensure team authentication matches subdomain 2018-11-17 23:30:05 -08:00
webpack.config.prod.js Preserve function names in production code 2018-12-04 22:36:13 -08:00
yarn.lock Closes #868 2019-01-19 13:11:11 -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

Join the community on Spectrum

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:

  • Postgres >=9.5
  • Redis
  • Slack or Google developer application for OAuth

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

  1. Install Docker for Desktop if you don't already have it.
  2. Register a Slack app at https://api.slack.com/apps
  3. Copy the file .env.sample to .env and fill out the Slack keys, everything else should work well for development.
  4. Run make up. This will download dependencies, build and launch a development version of Outline.

Development

Server

To enable debugging statements, set the following env vars:

DEBUG=sql,cache,presenters,events

Migrations

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

yarn sequelize migration:create
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 latest language features, including async/await, and Flow typing. Prettier and ESLint are ran as pre-commit hooks.

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 ontop of Slate 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/emails - React rendered email templates
  • server/models - Database models (Sequelize)
  • server/pages - Server-side rendered public pages (React)
  • server/presenters - API responses for database models
  • 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, and it's generally good to add tests for backend features and code.

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
yarn test

# To run backend tests
yarn test:server

# To run frontend tests
yarn test:app

Contributing

Outline is still 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 our Spectrum community. 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! Take a look at our roadmap.

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

  • Issues with good first issue label
  • Performance improvements, both on server and frontend
  • Developer happiness and documentation
  • Bugs and other issues listed on GitHub
  • Helping others on Spectrum

License

Outline is BSD licensed.