Installation

Installation guide for our application.

Setting up ResyncedDocs is straightforward, with options to clone the repository or use the convenient npx command. ResyncedDocs requires Node.js version 18 or higher for optimal performance.

Clone Repository

To get started, you can clone the Docs repository directly from GitHub.

1

Step 1: Clone the Docs Repository

Begin by cloning the Docs repository from GitHub:

git clone https://github.com/resyncedDesign/PublicDocsTemplate.git
2

Step 2: Access the Project Directory

After cloning, navigate into the project directory to start setting up:

cd PublicDocsTemplate
3

Step 3: Install Required Dependencies

Install all necessary project dependencies with npm:

Remember:

To support React 19, package maintainers will need to test and update their packages to include React 19 as a peer dependency. This is already in progress.

npm install --force
4

Step 4: Launch the Development Server

Finally, start the development server to view the project locally:

npm run dev

Quick Setup with npx

For a faster setup, use the npx command to create a new ResyncedDocs project in one step:

npx create-resynced-doc <project-directory>

Command Output:

Creating a new ResyncedDocs project in /path/to/your/project from the master branch...
Cloning Master (Full Documentation)...
ResyncedDocs project successfully created in /path/to/your/project!

Next steps:
1. Navigate to your project directory:
   cd <project-directory>
2. Install dependencies:
   npm install
3. Start the development server:
   npm run dev

With this setup, you’ll have a ready-to-use ResyncedDocs instance to start building your documentation.