Home | History | Annotate | Download | only in examples
      1 #!/bin/sh
      2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
      3 # Use of this source code is governed by a BSD-style license that can be
      4 # found in the LICENSE file.
      5 BASEDIR=$(dirname $0)
      6 SERVERPATH=$BASEDIR/stream_server/standalone.py
      7 SERVERROOT=$BASEDIR/../
      8 HANDLERSPATH=examples/stream_server/handlers
      9 echo Navigate to http://localhost:8001/examples/stream_trace_viewer.html
     10 python $SERVERPATH -d $SERVERROOT -w $HANDLERSPATH -p 8001
     11