Touchscreen for standup touchscreen and iPad
Start app in development mode:
nvm use # uses supported Node version for this project (optional)
cp .env.example .env
npm install
npm start
- Convert the pdf to standalone images using https://pdftoimage.com/pdf-to-png - or by any other means but the names must be formatted properly
- Drop them in the appropriate directory, e.g public/assets/cvsafety
- cd into the directory and run this command:
count=1
for file in *; do
if [[ -f "$file" ]]; then
extension="${file##*.}"
filename="${file%.*}"
new_filename=$(printf "%03d.${extension}" ${count})
mv "${file}" "${new_filename}"
((count++))
fi
done
This will format the names of the folder