Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

cd r2d2
python3 -m pip install -e .
cd server
python3 -m pip install -e .

Starting the r2d2 server

cd r2d2/server/app

$ pwd
.../r2d2/server/app

Then

$ run_r2d2_app --port=8080 --debug

You should see this output. This means that the server is running. 


 * Serving Flask app 'app.app'
 * Debug mode: on
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
 * Running on all addresses (0.0.0.0)
 * Running on http://127.0.0.1:8080
 * Running on http://192.168.10.66:8080
Press CTRL+C to quit
 * Restarting with stat
 * Debugger is active!
 * Debugger PIN: 912-946-391

Installing the r2d2 client

...