2022-09-14 22:50:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Build vue
|
|
|
|
cd apps/memories
|
|
|
|
npm i
|
|
|
|
cp ../../vue.zip .
|
2022-10-29 22:59:20 +00:00
|
|
|
unzip -qq vue.zip
|
2022-09-14 22:50:02 +00:00
|
|
|
cd ../..
|
|
|
|
|
|
|
|
# Speed up loads
|
|
|
|
php occ app:disable comments
|
|
|
|
php occ app:disable contactsinteraction:
|
|
|
|
php occ app:disable dashboard
|
|
|
|
php occ app:disable weather_status
|
|
|
|
php occ app:disable user_status
|
|
|
|
php occ app:disable updatenotification
|
|
|
|
php occ app:disable systemtags
|
|
|
|
php occ app:disable files_sharing
|
|
|
|
|
|
|
|
# Enable apps
|
|
|
|
php occ app:enable --force viewer
|
|
|
|
php occ app:enable --force memories
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Set debug mode and start dev server
|
|
|
|
php occ config:system:set --type bool --value true debug
|
|
|
|
php -S localhost:8080 &
|
|
|
|
|
|
|
|
# Get test photo files
|
|
|
|
cd data/admin/files
|
|
|
|
wget https://github.com/pulsejet/memories-test/raw/main/Files.zip
|
|
|
|
unzip Files.zip
|
|
|
|
cd ../../..
|
|
|
|
|
2022-10-20 21:45:35 +00:00
|
|
|
# Setup
|
|
|
|
cd apps/memories
|
|
|
|
make exiftool
|
|
|
|
cd ../..
|
|
|
|
|
2022-09-14 22:50:02 +00:00
|
|
|
# Index
|
|
|
|
php occ files:scan --all
|
|
|
|
php occ memories:index
|
|
|
|
|
2022-10-25 04:34:26 +00:00
|
|
|
# Set admin timeline path
|
2022-10-25 04:35:19 +00:00
|
|
|
php occ user:setting admin memories timelinePath "/Photos"
|
2022-10-25 04:34:26 +00:00
|
|
|
|
2022-09-14 22:50:02 +00:00
|
|
|
# Run e2e tests
|
|
|
|
cd apps/memories
|
|
|
|
sudo npx playwright install-deps chromium
|
|
|
|
npm run e2e
|
|
|
|
cd ../..
|