wiki-vnext
wiki-vnext copied to clipboard
Alpha Dev - Next version of Wiki.js
Wiki.js V3 - DEVELOPMENT
The most powerful and extensible open source Wiki software.
🛑🛑🛑🛑🛑
⚠️ WARNING ⚠️
THIS IS AN UNSTABLE ALPHA VERSION, NOT FOR GENERAL USE.
DO NOT REPORT BUGS FOR THIS VERSION.➡️ See https://github.com/requarks/wiki for the latest stable version.
🛑🛑🛑🛑🛑
Development Documentation
These are early docs and may change / stop working at any time.
Requirements
- Node.js 16.x
- Yarn 3.x
- PostgreSQL 11
Setup
This project is composed of 2 "sub-projects": core and ux.
coreis the GraphQL backend server (port11511)uxis the frontend Vue.js app (port80)
Both must run in order to load the app.
1. Run core
📂 From the
/coredirectory...
Create a config.yml file and enter the DB connection info to the PostgreSQL database, e.g.:
db:
host: localhost
port: 5432
user: postgres
pass: postgres
db: postgres
logLevel: debug
From a terminal, run:
yarn
yarn dev
2. Run ux
📂 From the
/uxdirectory...
From a second terminal, run:
yarn
yarn dev
3. Load the app
Load http://localhost/ to access the app.