When we deploy, we currently build an image and then deploy that image to nomad.
During the app startup process, we pull in the secrets from vault and load those into the environment.
Since we have our own fork of outline, we keep it up to date by pulling in the latest changes from the outline project on github
git remote add upstream git@github.com:outline/outline.git
git fetch upstream
git checkout master
git rebase upstream/master
An open, extensible, wiki for your team built using React and Node.js.
Try out Outline using our hosted version at www.getoutline.com.
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.
Outline requires the following dependencies:
- Node.js >= 12
- Postgres >=9.5
- Redis >= 4
- AWS S3 storage bucket for media and other attachments
- Slack or Google developer application for authentication
In development you can quickly get an environment running using Docker by following these steps:
- Clone this repo
- Install Docker for Desktop if you don't already have it
- Register a Slack app at https://api.slack.com/apps
- Copy the file
.env.sample
to.env
- Fill out the following fields:
SECRET_KEY
(follow instructions in the comments of.env
)SLACK_KEY
(this is called "Client ID" in Slack admin)SLACK_SECRET
- Add
http://localhost:3000/auth/slack.callback
as an Oauth callback URL in Slack App settings - Run
make up
. This will download dependencies, build and launch a development version of Outline
For a self-hosted production installation there is more flexibility, but these are the suggested steps:
-
Clone this repo and install dependencies with
yarn
ornpm install
Requires Node.js, npm and yarn installed
-
Build the web app with
yarn build:webpack
ornpm run build:webpack
-
Using the
.env.sample
as a reference, set the required variables in your production environment. The following are required as a minimum:SECRET_KEY
(follow instructions in the comments of.env
)SLACK_KEY
(this is called "Client ID" in Slack admin)SLACK_SECRET
DATABASE_URL
(run your own local copy of Postgres, or use a cloud service)REDIS_URL
(run your own local copy of Redis, or use a cloud service)URL
(the public facing URL of your installation)AWS_
(all of the keys beginning with AWS)
-
Migrate database schema with
yarn sequelize:migrate
ornpm run sequelize:migrate
-
Start the service with any daemon tools you prefer. Take PM2 for example,
NODE_ENV=production pm2 start index.js --name outline
-
Visit http://you_server_ip:3000 and you should be able to see Outline page
Port number can be changed in the
.env
file -
(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.
Outline uses debug. To enable debugging output, the following categories are available:
DEBUG=sql,cache,presenters,events,logistics,emails,mailer
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
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.
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 applicationapp/scenes
- Full page viewsapp/components
- Reusable React componentsapp/stores
- Global state storesapp/models
- State modelsapp/types
- Flow types for non-models
Backend is driven by Koa (API, web server), Sequelize (database) and React for public pages and emails.
server/api
- API endpointsserver/commands
- Domain logic, currently being refactored from /modelsserver/emails
- React rendered email templatesserver/models
- Database modelsserver/pages
- Server-side rendered public pagesserver/policies
- Authorization logicserver/presenters
- API responses for database modelsserver/test
- Test helps and supportserver/utils
- Utility methodsshared
- Code shared between frontend and backend applications
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
yarn test
# To run backend tests
yarn test:server
# To run frontend tests
yarn test:app
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 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!
If you’re 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
Outline is BSL 1.1 licensed.