├── .gitignore ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── common ├── ngrok.png └── virt_serv.png ├── config └── ssl_keys │ └── configuration.cnf.sample ├── generate_ssl_cert.sh ├── launch └── start_skill_server.launch ├── package.xml └── src ├── skill_server.py └── test_skill.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/README.md -------------------------------------------------------------------------------- /common/ngrok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/common/ngrok.png -------------------------------------------------------------------------------- /common/virt_serv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/common/virt_serv.png -------------------------------------------------------------------------------- /config/ssl_keys/configuration.cnf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/config/ssl_keys/configuration.cnf.sample -------------------------------------------------------------------------------- /generate_ssl_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/generate_ssl_cert.sh -------------------------------------------------------------------------------- /launch/start_skill_server.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/launch/start_skill_server.launch -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/package.xml -------------------------------------------------------------------------------- /src/skill_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/src/skill_server.py -------------------------------------------------------------------------------- /src/test_skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3SpheresRoboticsProject/flask_ask_ros/HEAD/src/test_skill.json --------------------------------------------------------------------------------