Ixian-Docs is the official documentation website for the Ixian Network. It is built using Next.js and the open-source documentation starter kit rubix-documents.
To start development:
- Clone the repository:
git clone git@github.com:ixian-platform/Ixian-Docs.git
- Navigate into the project directory:
cd Ixian-Docs - Install dependencies:
npm install
- Start the development server:
npm run dev
To build the project for production, run:
-
Build the app:
npm run build
-
Start the production server:
npm run start
Website settings can be modified in:
/settings/settings.ts
The navbar navigation can be customized by editing:
/settings/navigation.tsx
- Add or edit corresponding
.mdxfiles in:/contents/docs/ - To regenerate index after modifying the documentation, run:
npm run gen:docs
This will update the documents data in:
/settings/documents.ts
To regenerate search data after modifying the documentation, run:
npm run generate-content-jsonThis will update the search data in:
/public/search-data/documents.json
We welcome contributions from developers, integrators, and builders.
- Fork this repository
- Create a feature branch ('feature/my-change')
- Commit with clear, descriptive messages
- Open a Pull Request for review
This project is open-source and follows the rubix-documents license. See the full license in:
/LICENSE
For further details, refer to the official Next.js documentation v15+ using App Router: Next.js Documentation.