Awesome
GoProControllerUI
A responsive web interface for the GoProController API.
Production Setup
The GoProController Apache config is already set up to serve the static files generated by this project. If you have GoProController setup, then installing the UI is as simple as:
git clone https://github.com/joshvillbrandt/GoProControllerUI.git ~/GoProControllerUI
sudo ln -s ~/GoProControllerUI /home/GoProControllerUI
cd ~/GoProControllerUI
npm install
npm run-script build
sudo service apache2 restart
Note, you'll have to change the api_root
in app/app.js if you are hosting through Apache. If you are on the same machine as the server, a value like http://localhost/api
could work. However, you should probably make api_root
include your actual hostname instead of localhost
.
Development Setup
Clone the repo and install the code:
git clone https://github.com/joshvillbrandt/GoProControllerUI.git
cd GoProControllerUI
npm install
npm start
The UI should now be available at http://localhost:9000/.
If you are hosting the GoProController on the same machine at the development, you should be able to immediately add cameras in the UI. If that doesn't seem to be working, follow the steps in the Production Setup to set the correct api_root
URL. (The default api_root
is http://localhost:8000
.)
Change History
This project uses semantic versioning.
v0.2.4 - 2015/06/18
- Fix editing race condition and re-enable auto edit for new cameras
- Add natural sorting in camera list
v0.2.3 - 2015/01/13
- Updates for the latest
goprohero
library
v0.2.2 - 2015/01/13
- Restored debug interface from v0.1.0
v0.2.1 - 2015/01/06
- Live command queue updates from GoProController
- Add and remove commands from GoProController
v0.2.0 - 2014/11/24
- Initial release
- Live camera status updates from GoProController
- Add, edit, and remove cameras from GoProController
Previous versions
- This app was originally integrated with GoProController