A new recipe added: nodejs_mongodb_mongoxp.
This commit is contained in:
4
.recipes/nodejs_mongodb_mongoxp/storage/.gitignore
vendored
Normal file
4
.recipes/nodejs_mongodb_mongoxp/storage/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory except this folders.
|
||||
*
|
||||
!.gitignore
|
||||
!volumes
|
5
.recipes/nodejs_mongodb_mongoxp/storage/volumes/.gitignore
vendored
Normal file
5
.recipes/nodejs_mongodb_mongoxp/storage/volumes/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
# Ignore everything in this directory except this folders.
|
||||
*
|
||||
!.gitignore
|
||||
!nodejs-apps
|
||||
!mongodb-data
|
3
.recipes/nodejs_mongodb_mongoxp/storage/volumes/mongodb-data/.gitignore
vendored
Normal file
3
.recipes/nodejs_mongodb_mongoxp/storage/volumes/mongodb-data/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
# Ignore everything in this directory except this folders.
|
||||
*
|
||||
!.gitignore
|
4
.recipes/nodejs_mongodb_mongoxp/storage/volumes/nodejs-apps/.gitignore
vendored
Normal file
4
.recipes/nodejs_mongodb_mongoxp/storage/volumes/nodejs-apps/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory except this folders.
|
||||
*
|
||||
!.gitignore
|
||||
!helloworld.js
|
@ -0,0 +1,11 @@
|
||||
/*
|
||||
A humble test web application.
|
||||
https://www.w3schools.com/nodejs/nodejs_get_started.asp
|
||||
*/
|
||||
|
||||
var http = require('http');
|
||||
|
||||
http.createServer(function (req, res) {
|
||||
res.writeHead(200, {'Content-Type': 'text/html'});
|
||||
res.end('Hello World!');
|
||||
}).listen(8080);
|
Reference in New Issue
Block a user