Add .env.example

This commit is contained in:
Peter Maquiran
2021-07-10 09:11:03 +01:00
parent 451cfaa229
commit 0d2a832a21
8 changed files with 27 additions and 10 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
// jest-puppeteer.config.js
require('dotenv').config()
const port = process.env.PUPPETEER_PORT
module.exports = {
server: {
command: 'http-server ./www',
port: 8080,
command: `http-server --port ${port} ./www`,
port: port,
launchTimeout: 5000
},