Skip to content

Commit

Permalink
docs(readme): add local setup instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulyadav-57 committed Oct 10, 2024
1 parent 8f569ec commit 4c6ec08
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
RECOIL_DUPLICATE_ATOM_KEY_CHECKING_ENABLED=false
NEXT_PUBLIC_DISABLE_WEBCONTAINER=false

# https://proxy.cors.sh/
NEXT_PUBLIC_PROXY_KEY=
47 changes: 47 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,53 @@ We are pleased to announce that our project is now live, and you can access it a

![IDE Preview](/images/screenshot.jpg)

## Local Setup

To set up the project locally for development with **Node.js 18 LTS** or higher, follow these steps:

### Steps

1. **Clone the repository**
2. **Install the dependencies**: After cloning the repository, navigate to the project directory and install the dependencies:

```bash
npm install
```

3. **Run the development server**:

```bash
npm run dev
```

4. **Open the project in the browser**: Once the development server is running, open your browser and navigate to:

```
http://localhost:3000
```

This will load the local version of the IDE.

Ensure that you configure any necessary environment variables in a `.env.local` file. You can create this file by copying `.env.example` and modifying it with your own values.

```bash
cp .env.example .env.local
```

### Building for Production

To create an optimized production build of the application, use the following command:

```bash
npm run build
```

After the build process is complete, you can start the production server:

```bash
npm start
```

## 📖 Documentation

The documentation for Nujan can be found at [docs.nujan.io](https://docs.nujan.io/)
Expand Down

0 comments on commit 4c6ec08

Please sign in to comment.