This is a shared resource, please use responsibily. To ensure fair use and reduce costs, inactive Apps will be automatically removed after 7 days.
This app is powered by MyProxy
Featured Apps:
Corny Jokes
Want to be featured? Email Herman at
hwong.0305@gmail.com
This will be the domain name that your friends and family will be putting into the browser to visit your website.
const express = require('express')
const app = express()
app.use(express.static('public'))
app.get('/', (req, res) => {
res.send('hello');
});
app.listen(process.env.PORT || 8123);
...
"scripts": {
"start": "node app.js",
...
}
...
The video below shows you how to deploy your apps after setting up your SSH Key. The contents may contain more information than the steps above because they are taken from the MyProxy site, but it should be enough to help you understand each steps.