Commit 5090b4b2 by Amir Aharon

add domain and some changes

parent 74e6d0e3
No preview for this file type
......@@ -40,3 +40,11 @@ pass: g@ll3r&15
replacing files names/extensions:
for f in *; do mv "$f" "`echo $f | sed s/Vehicle/Vehicle.jpg/`"; done
[fixing-npm-permissions ]
https://docs.npmjs.com/getting-started/fixing-npm-permissions
[mongo commands]
- deleting old documents: db.getCollection('[collection]').remove({"[create-timestamp-field]": { "$lte": [epoch timestamp milli]}})
e.g: delete every report older then 1519298608000
db.getCollection('reports').remove({"created": { "$lte": 1519298608000}})
No preview for this file type
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment