Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

Commit

Permalink
add better scripts for running locally
Browse files Browse the repository at this point in the history
  • Loading branch information
HexaField committed Jun 21, 2024
1 parent 5ca5ac6 commit 39d3dc1
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 1 deletion.
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "ee-static-build-template",
"version": "0.0.0",
"description": "",
"type": "module",
"main": "",
"etherealEngine": {
"version": "1.3.0"
Expand All @@ -11,10 +12,14 @@
"check-errors": "tsc --noemit",
"dev": "cross-env APP_ENV=development NODE_OPTIONS=--max_old_space_size=20480 vite",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=10240 vite build",
"start": "node server.js",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"format-scss": "stylelint \"**/*.scss\" --fix",
"format-staged": "lint-staged",
"precommit": "no-master-commits -b main"
"precommit": "no-master-commits -b main",
"local": "npm run localbuild && npm run localstart",
"localbuild": "cross-env APP_ENV=production VITE_LOCAL_BUILD=true npm run build",
"localstart": "cross-env APP_ENV=production VITE_LOCAL_BUILD=true npm run start"
},
"peerDependencies": {},
"dependencies": {},
Expand Down
72 changes: 72 additions & 0 deletions server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
/*
CPAL-1.0 License
The contents of this file are subject to the Common Public Attribution License
Version 1.0. (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
The License is based on the Mozilla Public License Version 1.1, but Sections 14
and 15 have been added to cover use of software over a computer network and
provide for limited attribution for the Original Developer. In addition,
Exhibit A has been modified to be consistent with Exhibit B.
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
specific language governing rights and limitations under the License.
The Original Code is Ethereal Engine.
The Original Developer is the Initial Developer. The Initial Developer of the
Original Code is the Ethereal Engine team.
All portions of the code written by the Ethereal Engine team are Copyright © 2021-2023
Ethereal Engine. All Rights Reserved.
*/

import { koa } from '@feathersjs/koa'
import packageRoot from 'app-root-path'
import dotenv from 'dotenv'
import { createServer as _createServer } from 'http'
import { createServer } from 'https'
import send from 'koa-send'
import serve from 'koa-static'
import { readFileSync } from 'node:fs'
import path from 'path'

const cwd = process.cwd()

dotenv.config({ path: cwd + '/../../../../.env.local' })

const app = new koa()
const PORT = parseInt(process.env.VITE_APP_PORT) || 3000
const HTTPS = process.env.VITE_LOCAL_BUILD ?? false
const key = process.env.KEY || 'certs/key.pem'
const cert = process.env.CERT || 'certs/cert.pem'

app.use(
serve(path.join(cwd, 'dist'), {
brotli: true,
setHeaders: (ctx) => {
ctx.setHeader('Origin-Agent-Cluster', '?1')
}
})
)

app.use(async (ctx) => {
await send(ctx, path.join('dist', 'index.html'), {
root: cwd
})
})

app.listen = function () {
let server
if (HTTPS) {
const pathedkey = readFileSync(path.join(packageRoot.path, key))
const pathedcert = readFileSync(path.join(packageRoot.path, cert))
server = createServer({ key: pathedkey, cert: pathedcert }, this.callback())
} else {
server = _createServer(this.callback())
}
return server.listen.apply(server, arguments)
}
app.listen(PORT, () => console.log(`Server listening on port: ${PORT}`))

0 comments on commit 39d3dc1

Please sign in to comment.