Ce projet est une télécommande virtuelle pour les décodeurs TV Orange, développée avec Django.
Avant de lancer l'application, vous devez configurer l'adresse IP de votre décodeur Orange TV.
- Ouvrez le fichier
telecommande/views.py
. - Trouvez la ligne
DECODER_IP = "192.168.1.16"
. - Remplacez
"192.168.1.16"
par l'adresse IP de votre décodeur.
- Clonez le dépôt.
- Installez les dépendances :
pip install -r requirements.txt
- Lancez les migrations :
python orange_tv/manage.py migrate
- Démarrez le serveur :
python orange_tv/manage.py runserver
Ouvrez votre navigateur à l'adresse http://127.0.0.1:8000/
pour accéder à la télécommande.
This project is a virtual remote control for Orange TV decoders, developed with Django.
Before running the application, you must configure the IP address of your Orange TV decoder.
- Open the file
telecommande/views.py
. - Find the line
DECODER_IP = "192.168.1.16"
. - Replace
"192.168.1.16"
with the IP address of your decoder.
- Clone the repository.
- Install the dependencies:
pip install -r requirements.txt
- Run migrations:
python orange_tv/manage.py migrate
- Start the server:
python orange_tv/manage.py runserver
Open your browser to http://127.0.0.1:8000/
to access the remote control.