An open API service indexing awesome lists of open source software.

https://github.com/morbidick/loc3

Meteor warehousing system
https://github.com/morbidick/loc3

Last synced: 7 months ago
JSON representation

Meteor warehousing system

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")
````