This repository was archived by the owner on May 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 294
Quick Start Guide
Marco Lancini edited this page Aug 11, 2016
·
28 revisions
To launch Needle, just open a console and type:
python needle.py
You will be presented with Needle's command line interface.
First, create a resource file with the commands you want to have automatically executed. For example:
$ cat config.txt
# This is a comment, it won't be executed
set DEBUG False
set VERBOSE False
# If SETUP_DEVICE is set to True, Needle will automatically install all the required tools on the device
set SETUP_DEVICE False
set IP 192.168.0.10
set PORT 5555
set APP com.example.app
use binary/metadata
Then, launch Needle and instruct it to load the resource file:
python needle.py -r config.txt