The Halcyon Wiki website is created as a statically generated site, constructed with the utilization of Docusaurus.
- Node.js and npm: You must have
Node.js
andnpm
(Node Package Manager) installed on your system. If you preferyarn
overnpm
, you can installyarn
throughnpm
.
Once you have these prerequisites, you can proceed to setup the project and start developing.
Clone this repository
git clone https://github.com/halcyonproject/wiki.git
Go into directory
cd wiki
Install the required dependencies using the following command:
npm install
npm run start
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
npm run build
This command generates static content into the build
directory.