Updates PORT
This commit is contained in:
parent
03173a35e4
commit
eb34e2981a
2 changed files with 4 additions and 2 deletions
2
index.js
2
index.js
|
@ -16,6 +16,6 @@ app.use('/', (req, res) => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const PORT = 8080;
|
const PORT = process.env.PORT || process.argv[1] || 8080;
|
||||||
app.listen(PORT, () => {});
|
app.listen(PORT, () => {});
|
||||||
console.log("this ran :P");
|
console.log("this ran :P");
|
|
@ -784,6 +784,8 @@ span {
|
||||||
top:0px;
|
top:0px;
|
||||||
transform: translate(0, -100%);
|
transform: translate(0, -100%);
|
||||||
width:100%;
|
width:100%;
|
||||||
|
box-shadow: .00in -.5in 1in #0000006b;
|
||||||
|
border-radius: .05in .05in .0in.0in;
|
||||||
}
|
}
|
||||||
.accountSwitcher tr{
|
.accountSwitcher tr{
|
||||||
transition: background .3s;
|
transition: background .3s;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue