Ixi Docs are the official documentation for the Ixian network. The documentation is built using Next.js and documentation starter kit rubix-documents which is a free, open-source documentation template.
-
Clone the repository:
git clone [email protected]:ProjectIxian/ixi-docs.git cd ixi-docs
-
Install dependencies:
npm install
-
Run the development server:
npm run dev
-
Open http://localhost:3000 in your browser to see the project.
-
For Production:
-
Build the app:
npm run build
-
Start the production server:
npm run start
-
Open http://localhost:3000 to view the production build.
-
If deploying to Vercel, the build step is automatically handled during deployment.
-
ixidocs 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 [email protected]:ProjectIxian/ixi-docs.git
- Navigate into the project directory:
cd ixi-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
- Update the documentation structure by modifying:
/settings/documents.ts
- Add or edit corresponding
.mdx
files in:/contents/docs/
To regenerate search data after modifying the documentation, run:
npm run generate-content-json
This will update the search data in:
/public/search-data/documents.json
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.