forked from thorsten-stripe/js-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
52 lines (44 loc) · 1.44 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// server.js
// where your node app starts
// init project
const express = require("express");
const path = require("path");
const app = express();
// Load environment variables from the `.env` file.
require("dotenv").config();
// we've started you off with Express,
// but feel free to use whatever libs or frameworks you'd like through `package.json`.
// This facilitates the correct frontend routing - DO NOT TOUCH
const port = process.env.PORT;
if (port == 3000) {
// http://expressjs.com/en/starter/static-files.html
app.use(express.static(path.join(__dirname, `../frontend/vanilla`)));
app.use(
"/images",
express.static(path.join(__dirname, `../frontend/reactjs/src/images`))
);
// http://expressjs.com/en/starter/basic-routing.html
app.get("/", function(request, response) {
response.sendFile(path.join(__dirname, `../frontend/vanilla/index.html`));
});
serverStartLog = [
`🚀 Server running locally: http://localhost:3000/`,
`Backend API served from "backend/server.js"`,
`Frontend served from "frontend/vanilla"`
];
} else {
serverStartLog = [
`Backend API served from "backend/server.js"`,
`Frontend served from "frontend/reactjs"`
];
}
// Implement your API routes here
app.get("/config", (req, res) => {
res.json({
stripePublishableKey: process.env.STRIPE_PUBLISHABLE_KEY
});
});
// listen for requests :)
const server = app.listen(port, function() {
console.log(...serverStartLog);
});