.. Note Copyright 2017 Digital This file is part of BeeWatch. BeeWatch is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. BeeWatch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with BeeWatch. If not, see . Program Design ============== This page explains the structure of BeeWatch. .. Note:: This is how i want it to be, not how it is right now. In the current state the core and the server are not separated, the core opens a public server. Core ----- The Core handles gpio stuff and analyses data. The data can be accessed through a file socket opened by the Core. Server ------ The Server connects to the file socket of the core and serves has extensions for different types of (public) apis. authentication will be implemented using ssl, username/password or both. Client ------ The Client is the front end of BeeWatch. Right now it is a program but I plan a web interface client. ..