All Projects → outline → Outline

outline / Outline

Licence: other
The fastest wiki and knowledge base for growing teams. Beautiful, feature rich, and markdown compatible.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Outline

Tms
基于频道模式的团队沟通协作+轻量级任务看板,支持mardown、富文本、在线表格和思维导图的团队博文wiki,i18n国际化翻译管理的响应式web开源团队协作系统。
Stars: ✭ 232 (-98.32%)
Mutual labels:  wiki, slack
Git Wiki Theme
A revolutionary full-featured wiki for github pages and jekyll. You don't need to compile it!
Stars: ✭ 139 (-99%)
Mutual labels:  wiki
Springbootvulexploit
SpringBoot 相关漏洞学习资料,利用方法和技巧合集,黑盒安全评估 check list
Stars: ✭ 3,196 (-76.9%)
Mutual labels:  wiki
Xsm
State Management made eXtraordinarily simple and effective for Angular, React, and Vue
Stars: ✭ 138 (-99%)
Mutual labels:  mobx
Slackbotapi
node.js Slack RTM API module
Stars: ✭ 135 (-99.02%)
Mutual labels:  slack
Lita Slack
A Slack adapter for Lita.
Stars: ✭ 138 (-99%)
Mutual labels:  slack
Openv
🔥 OpenV Wiki
Stars: ✭ 135 (-99.02%)
Mutual labels:  wiki
Yfiton
Cross-platform CLI utility command for sending notifications using well-known or modern communication services
Stars: ✭ 142 (-98.97%)
Mutual labels:  slack
Slack Go Webhook
Go Library to send messages to Slack via Webhooks
Stars: ✭ 139 (-99%)
Mutual labels:  slack
Slack Macos Swiftui Sample
Slack macOS Big Sur SwiftUI example app
Stars: ✭ 138 (-99%)
Mutual labels:  slack
Claudia Bot Builder
Create chat bots for Facebook Messenger, Slack, Amazon Alexa, Skype, Telegram, Viber, Line, GroupMe, Kik and Twilio and deploy to AWS Lambda in minutes
Stars: ✭ 1,717 (-87.59%)
Mutual labels:  slack
Mkdocs Awesome Pages Plugin
An MkDocs plugin that simplifies configuring page titles and their order
Stars: ✭ 136 (-99.02%)
Mutual labels:  wiki
React Slack Chat
[UPDATED] A Server-less Beautiful Gooey / Material Design Slack Chat Web Integrating Widget.
Stars: ✭ 139 (-99%)
Mutual labels:  slack
Review Reporter
Bot for reporting Google Play Reviews on Slack with possibility to fast reply and creating Jira issues from low rating reviews.
Stars: ✭ 135 (-99.02%)
Mutual labels:  slack
Wikit
Wikipedia summaries from the command line
Stars: ✭ 141 (-98.98%)
Mutual labels:  wiki
Bolt Js
A framework to build Slack apps using JavaScript
Stars: ✭ 1,971 (-85.75%)
Mutual labels:  slack
Quicklogger
Library for logging on files, console, memory, email, rest, eventlog, syslog, slack, telegram, redis, logstash, elasticsearch, influxdb, graylog, Sentry, Twilio, ide debug messages and throw events for Delphi/Firemonkey/freepascal/.NET (Windows/Linux/OSX/IOS/Android).
Stars: ✭ 137 (-99.01%)
Mutual labels:  slack
Lookerbot
Lookerbot lets you access all your Looker data from Slack! Super fun!
Stars: ✭ 138 (-99%)
Mutual labels:  slack
Skclusive.blazor.samples
Skclusive.Blazor.Samples
Stars: ✭ 144 (-98.96%)
Mutual labels:  mobx
Server Monitor App
A PHP application to monitor the health of your servers
Stars: ✭ 141 (-98.98%)
Mutual labels:  slack

An open, extensible, wiki for your team built using React and Node.js.
Try out Outline using our hosted version at www.getoutline.com.

screenshot

TypeScript Prettier Styled Components

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, Google, Azure, or OIDC application for authentication

Self-Hosted Production

Docker

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

  1. First setup Redis and Postgres servers, this is outside the scope of the guide.

  2. Download the latest official Docker image, new releases are available around the middle of every month:

    docker pull outlinewiki/outline

  3. Using the .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

  4. Setup the database with yarn db: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 db:migrate --env=production-ssl-disabled, for example:

    docker run --rm outlinewiki/outline yarn db:migrate

  5. Start the container:

    docker run outlinewiki/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 or other reverse proxy to serve your instance of Outline for a clean URL without the port number, support SSL, etc.

Terraform

Alternatively a community member maintains a script to deploy Outline on Google Cloud Platform with Terraform & Ansible.

Upgrading

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 db:migrate

Git

If you're running Outline by cloning this repository, run the following command to upgrade:

yarn run upgrade

Local Development

For contributing features and fixes you can quickly get an environment running using Docker by following these steps:

  1. Install these dependencies if you don't already have them
    1. Docker for Desktop
    2. Node.js (v16 LTS preferred)
    3. Yarn
  2. Clone this repo
  3. Register a Slack app at https://api.slack.com/apps
  4. Copy the file .env.sample to .env
  5. 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)
  6. Configure your Slack app's Oauth & Permissions settings
    1. Slack recently prevented the use of http protocol for localhost. For local development, you can use a tool like ngrok or a package like mkcert. (How to use HTTPS for local development)
    2. Add https://my_ngrok_address/auth/slack.callback as an Oauth redirect URL and update the URL env var to match
    3. Ensure that the bot token scope contains at least users:read
  7. Run make up. This will download dependencies, build and launch a development version of Outline

Testing

The Makefile has other useful scripts, including some test automation.

  1. To run the entire test suite, run make test
  2. During development, it's often useful, to re-run some tests every time a file is changed. Use make watch to start the test daemon and follow the instructions in the console

Contributing

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

Before submitting 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. This will result in a much higher liklihood of code being accepted.

If you’re 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

Architecture

If you're interested in contributing or learning more about the Outline codebase please refer to the architecture document first for a high level overview of how the application is put together.

Debugging

In development Outline outputs simple logging to the console, prefixed by categories. In production it outputs JSON logs, these can be easily parsed by your preferred log ingestion pipeline.

HTTP logging is disabled by default, but can be enabled by setting the DEBUG=http environment variable.

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

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

License

Outline is BSL 1.1 licensed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].