github.com/slspeek/camlistore_namedsearch@v0.0.0-20140519202248-ed6f70f7721a/dev/devcam/doc.go (about) 1 /* 2 Copyright 2013 The Camlistore Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 /* 18 The devcam tool is a collection of wrappers around the camlistore programs 19 (camistored, camput, camtool...) which take care of setup and configuration, 20 so they can be used by developers to ease hacking on camlistore. 21 22 Usage: 23 24 devcam <mode> [modeopts] -- [commandargs] 25 26 Modes: 27 28 appengine: run the App Engine camlistored in dev mode. 29 get: run camget in dev mode. 30 put: run camput in dev mode. 31 server: run the stand-alone camlistored in dev mode. 32 33 Examples: 34 35 devcam get <blobref> 36 devcam get -- --shared http://localhost:3169/share/<blobref> 37 38 devcam put file --filenodes /mnt/camera/DCIM 39 40 devcam server -wipe -mysql -fullclosure 41 42 For mode-specific help: 43 44 devcam <mode> -help 45 46 */ 47 package main