mirror of
/repos/Prototyper.git
synced 2025-12-30 06:31:32 +01:00
simple docker databases
This commit is contained in:
parent
14b26a2ba2
commit
7510025f4d
2
.gitignore
vendored
2
.gitignore
vendored
@ -11,3 +11,5 @@ fleet.json
|
||||
node_modules/
|
||||
doc/
|
||||
public/lib
|
||||
mongodb_data
|
||||
rethinkdb_data
|
||||
|
||||
11
README.md
11
README.md
@ -156,3 +156,14 @@ removes markers and everything in between.
|
||||
contains all type='script' attributes concatenated based on 'order'
|
||||
style -> <link href="/content/collection/name.css" media="all" rel="stylesheet" type="text/css">
|
||||
contains all type='style' attributes concatenated based on 'order'
|
||||
|
||||
|
||||
cucumber testing (needs higher nodejs version):
|
||||
|
||||
npm install --save-dev cucumber chromedriver selenium-webdriver
|
||||
|
||||
|
||||
starting databases:
|
||||
|
||||
npm run mongodb
|
||||
npm run rethinkdb
|
||||
|
||||
@ -47,6 +47,8 @@
|
||||
"install": "./bin/installit",
|
||||
"deploy": "./bin/deployit",
|
||||
"doc": "./bin/docit",
|
||||
"cov": "./bin/coverit"
|
||||
"cov": "./bin/coverit",
|
||||
"rethinkdb": "docker run --rm --name rethinkdb -p 28080:8080 -p 28015:28015 -v ${PWD}/rethinkdb_data:/data rethinkdb",
|
||||
"mongodb": "docker run --rm --name mongodb -p 27017:27017 -v ${PWD}/mongodb_data:/data/db mongo"
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user