This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// server.js | |
// where your node app starts | |
// we've started you off with Express (https://expressjs.com/) | |
// but feel free to use whatever libraries or frameworks you'd like through `package.json`. | |
const express = require("express"); | |
const app = express(); | |
app.use(express.json()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example express application adding the parse-server module to expose Parse | |
// compatible API routes. | |
var express = require('express'); | |
var ParseServer = require('parse-server').ParseServer; | |
var path = require('path'); | |
var compression = require('compression'); | |
var S3Adapter = require('@parse/s3-files-adapter'); | |
var oembed = require('./oembed.js'); | |
var getTrip = require('./getTrip.js'); |