Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sudhir878786/calendar-event


https://github.com/sudhir878786/calendar-event

Last synced: 16 days ago
JSON representation

Awesome Lists containing this project

README

        

### Installation 🔧

Local installation:

```bash
# Clone this repository
$ git clone
Change directory to the project path
```

**Server setup:**
```bash
# Change directory to the server path
$ cd server

# Install dependencies
$ npm install
```

```shell
PORT=5000
MONGODB_CNN= {Open MongoDB compass and connect to an existing server in my case mongodb://localhost:27017}
JWT_SECRET_KEY=RANDOMKEY
```

---

**Client setup:**
```bash
# Go back to the project path
$ cd ..

# Change directory to the client path
$ cd client

# Install dependencies
$ npm install
```

## Deployment 📦

```bash
# Open terminal in project path and run
$ cd server
$ npm start

# Open another terminal in project path and run
$ cd client
$ npm start
```
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.

```