https://github.com/hemangnakarani/coders-calendar-api
API to read data from Google Sheets for Coder's Calendar Android/Web Application.
https://github.com/hemangnakarani/coders-calendar-api
expressjs googleappsscript googlesheets nodejs
Last synced: about 1 month ago
JSON representation
API to read data from Google Sheets for Coder's Calendar Android/Web Application.
- Host: GitHub
- URL: https://github.com/hemangnakarani/coders-calendar-api
- Owner: HemangNakarani
- Created: 2020-10-17T18:27:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-17T18:27:54.000Z (over 5 years ago)
- Last Synced: 2025-04-02T11:26:37.392Z (about 1 year ago)
- Topics: expressjs, googleappsscript, googlesheets, nodejs
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coders-Calendar-Api
API to read data from Google Sheets for Coder's Calendar Android/Web Application.
### Environment file
You need to setup a `.env` file in the root of the repository. The file should look like this: (`.env.template` available in repository)
```bash
NODE_ENV = #Your node environment mode (development or production)
SHEET_KEY= #Sheet key of the sheet you want to access
```
### Usage:
- Set Up:
```
git clone https://github.com/hemangnakarani/coders-calendar-api.git
cd coders-calendar-api
npm install
```
- Run server: (Development)
```
npm run dev
```
- Run server: (Production)
```
npm start
```