mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
A DOKKU_SCALE file will always be used for managing the scale count for an app if it exists in a repository. As such, ps:scale usage should be disabled in those cases. This commit makes that more apparent. Also document how to build a specific core plugin for testing purposes. Closes #3544
13 lines
279 B
JavaScript
13 lines
279 B
JavaScript
var express = require('express');
|
|
|
|
var app = express.createServer(express.logger());
|
|
|
|
app.get('/', function(request, response) {
|
|
response.send('nodejs/express');
|
|
});
|
|
|
|
var port = process.env.PORT || 5000;
|
|
app.listen(port, function() {
|
|
console.log("Listening on " + port);
|
|
});
|