https://github.com/morbidick/loc3
Meteor warehousing system
https://github.com/morbidick/loc3
Last synced: 7 months ago
JSON representation
Meteor warehousing system
- Host: GitHub
- URL: https://github.com/morbidick/loc3
- Owner: morbidick
- Created: 2014-11-07T15:50:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-06-30T21:40:06.000Z (almost 7 years ago)
- Last Synced: 2024-08-28T10:29:33.211Z (10 months ago)
- Language: JavaScript
- Size: 1.56 MB
- Stars: 3
- Watchers: 6
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Locc3 Application
## Startup
meteor needs to be installed, no other dependencies
````
vagrant up #optional
meteor --settings private/settings.json
````## Backup and Recover
````
mongodump -h localhost --port 3001 -d meteor
mongorestore -h localhost --port 3001 -d meteor dump/meteor
````## FAQ
### Set user as admin
````
$ meteor shell
Roles.addUsersToRoles(Meteor.users.findOne({username: "myusername"}),"admin")
````