Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sudhir878786/calendar-event
https://github.com/sudhir878786/calendar-event
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sudhir878786/calendar-event
- Owner: Sudhir878786
- Created: 2024-12-02T14:24:00.000Z (21 days ago)
- Default Branch: Sudhir
- Last Pushed: 2024-12-02T14:38:11.000Z (21 days ago)
- Last Synced: 2024-12-02T15:32:47.196Z (20 days ago)
- Language: JavaScript
- Size: 319 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.```