├── .env-defaults ├── .gcloudignore ├── .gitignore ├── Procfile ├── README.md ├── app.yaml ├── index.js ├── package.json └── yarn.lock /.env-defaults: -------------------------------------------------------------------------------- 1 | PORT = 8080 2 | CLIENT_URL = http://localhost:3000 -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/supachat-backend/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/supachat-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/supachat-backend/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/supachat-backend/HEAD/app.yaml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/supachat-backend/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/supachat-backend/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/supachat-backend/HEAD/yarn.lock --------------------------------------------------------------------------------