Spacearr allows you to monitor your hard disk space on you computer via an Android phone or via a Windows UWP app. This is done without opening any ports on a computer but by using a message service from Pusher. The messaging service that Pusher offers us is a "Pub/Sub" service, which is an asynchronous messaging service which is used by the computer and Android/UWP app to communicate to one another.
This is the Windows worker service that you will install onto the computer so that the computer and Android/UWP app can communicate. It is basically the same as a Windows service, but more modern and uses the .Net Core Framework. See this Stackoverflow answer for more information.
This is the app that is used on the Android phone to check the different drives on the computer. You can see the total space and as well as the free space. You will get notifications every 15 minutes if there is low space.
This is the app that is used on the Windows computer to check the different drives on the computer. You can see the total space and as well as the free space.
- Install Spacearr
- See the Setup Guide for further configuration
Release Type | Branch: master (stable) | Branch: dev (semi-unstable) |
---|---|---|
Binary Releases |
Service | Master | Dev |
---|---|---|
AppVeyor |
- Supports platforms: Windows Services for backend, UWP & Android for front end.
- Allows you to view your hard disk space from your Android device.
- Get notifications on your Android device when your hard disk space is running low.
- No need to open ports on your desktop, just sign up to Pusher and fill in those details when installing the service.
- Monitor multiple computers.
- Make sure all the required software mentioned above are installed
- Clone the repository into your development machine (info)
- Open
Spacearr.sln
in Visual Studio 2019 - Make sure
Spacearr.UWP
is set as the startup project - Press
F5