-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
For now, there is no installer or prepackaged installation for this project. This will be coming in the future. For now, follow the installation instructions below.
git clone https://github.com/Bennett-Wendorf/Kivy-Raspi-Desktop-App.gitUse pipenv to install the requirements in a virtual environment
pipenv installOR
Manually install requirements using pip
pip install <requirements from Pipfile>Make a copy of the TEMPLATE.secrets.toml file and rename the copy to .secrets.toml. This is where you will add settings that shouldn't be pushed to a repository, such as API keys.
See the Set up OpenWeatherMap API page for instructions on this.
Most likely, you will not need to do anything here. My app id is included in the MSALHelper.py file, and should work for most Microsoft accounts. However, if you seem to be getting errors with Microsoft authentication, you can follow the steps here.
See the Set up Spotify API page for instructions on this.
Modify any other settings you would like in the settings.toml file. What is listed in that file already is also the default if that particular setting is not specified, with the exception of the lists_to_use setting, which defaults to an empty list.
If pipenv was used:
pipenv run python main.pyOR
If not, just run:
python main.py