fintic-tracker/README.md

61 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

2023-10-09 02:51:33 +00:00
# Fintic
2021-05-04 15:28:29 +00:00
## Install instructions
2021-05-04 21:25:13 +00:00
2023-10-09 02:51:33 +00:00
1. Update your Raspberry PI OS and install git
2022-03-07 20:27:14 +00:00
2023-10-09 02:51:33 +00:00
```shell
sudo apt update
sudo apt upgrade -y
sudo apt install -y git
```
2021-05-04 20:27:39 +00:00
2023-10-09 02:51:33 +00:00
1. Clone the repo: `git clone https://github.com/fin-tic/fintic --recursive`
1. Enter the repo: `cd fintic`
1. Install Packages: `bash 01_setup_packages.sh`
1. Install Python dependencies: `bash 02_setup_python.sh`
2023-10-09 03:41:25 +00:00
1. Configure boot configuration: `bash 03_update_boot_config.sh`
2023-10-09 03:42:18 +00:00
1. Reboot the pi: `sudo reboot now`
2021-05-04 21:25:13 +00:00
2023-10-10 00:20:00 +00:00
## Install the hotspot
```shell
2021-12-02 17:35:51 +00:00
cd ~
curl "https://www.raspberryconnect.com/images/hsinstaller/AutoHotspot-Setup.tar.gz" -o AutoHotspot-Setup.tar.gz
tar -xzvf AutoHotspot-Setup.tar.gz
cd Autohotspot
sudo ./autohotspot-setup.sh
```
2023-10-10 00:20:00 +00:00
Choose option 2, then option 7 to change the SSID and password (for some reason it didn't work with the default SSID and password).
2021-12-02 17:35:51 +00:00
2021-12-02 17:42:26 +00:00
Then you can connect to the network and go to http://fintic.local:1024 or http://10.0.0.5:1024 and enter wifi information, then reboot
2021-05-05 19:44:30 +00:00
2023-10-10 00:20:00 +00:00
## Change the hostname
2021-05-05 19:24:41 +00:00
To change the hostname (URL used to access the server) first open config
2023-10-10 00:20:00 +00:00
2021-05-05 19:24:41 +00:00
```console
sudo raspi-config
```
2023-10-10 00:20:00 +00:00
2021-05-05 19:24:41 +00:00
Then go to system options -> hostname and change it to e.g. fintic
2021-05-05 19:45:42 +00:00
You then connect to the server using the url fintic.local:1024
2021-05-05 19:24:41 +00:00
2021-05-04 15:39:36 +00:00
## Run instructions
```console
2021-12-01 16:38:11 +00:00
sudo -E python3 server.py
2021-05-04 15:39:36 +00:00
```
2023-10-10 00:20:00 +00:00
in browser go to url http://raspberrypi.local:1024
2023-10-10 00:20:00 +00:00
If it doesn't work because of a missing package try running setup.sh again, sometimes it fails to connect to the package repos
2021-05-04 15:28:29 +00:00
2023-10-10 00:20:00 +00:00
## Notes
2021-05-04 15:28:29 +00:00
2023-10-10 00:20:00 +00:00
To convert bdf font to pil format do `pilfont.py <font filename>`
pillow v 5.4.1 works, but version 8.2.0 breaks.