Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.25 KB

macos.md

File metadata and controls

50 lines (43 loc) · 1.25 KB
title description published date tags editor dateCreated
macOS
Getting started with a Wiki.js installation on macOS
true
2022-04-04 19:36:37 UTC
setup
markdown
2019-05-04 04:13:20 UTC

Before going any further, make sure your system meets all the requirements.

Install

  1. Open Terminal.
  2. Download the latest version of Wiki.js:
wget https://github.com/Requarks/wiki/releases/latest/download/wiki-js.tar.gz
  1. Extract the package to the final destination of your choice:
mkdir wiki
tar xzf wiki-js.tar.gz -C ./wiki
cd ./wiki
  1. Rename the sample config file to config.yml:
mv config.sample.yml config.yml
  1. Edit the config file and fill in your database and port settings (Configuration Reference):
nano config.yml
  1. For SQLite installations only: (skip this step otherwise) Fetch native bindings for SQLite3:
npm rebuild sqlite3
  1. Run Wiki.js
node server
  1. Wait until you are invited to open to the setup page in your browser.
  2. Complete the setup wizard to finish the installation.

Run as service

Coming soon

{.align-abstopright}