Skip to content

Commit

Permalink
postgres init file added
Browse files Browse the repository at this point in the history
  • Loading branch information
darknight-007 committed Jan 16, 2018
1 parent 06f3078 commit 0f933b0
Show file tree
Hide file tree
Showing 26 changed files with 17 additions and 0 deletions.
Binary file added annotable/small-tomatoes/IMG_2565.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2566.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2567.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2568.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2569.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2570.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2571.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2572.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2573.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2574.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2575.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2576.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2577.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2578.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2579.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2590.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2591.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2592.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2593.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2594.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2595.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2596.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2597.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2598.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added annotable/small-tomatoes/IMG_2599.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions annotable/small-tomatoes/addImages.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
#This script adds all files in its current directory to the images stored on the AgDSS server.
#It takes one argument, which is the category for all the files that will be added
#
SERVER="localhost:8000"
URL="/webclient/addImage"
echo "Category is $1"
if [ "$#" -lt 1 ]
then
echo "Category is required"
exit 1
fi
shopt -s nullglob
for file in *.JPG; do
echo $file
curl --data "path=$(pwd)&image_name=$file&category=$1" "$SERVER$URL"
done

0 comments on commit 0f933b0

Please sign in to comment.