diff --git a/.dockerignore b/.dockerignore index b313384..ad7e611 100644 --- a/.dockerignore +++ b/.dockerignore @@ -6,7 +6,6 @@ out/ data/uploads/* !data/uploads/sample.jpg data/db/* -!data/db/slideshow.json.dist /plugins/user/* !/plugins/user/.gitkeep *.lock diff --git a/.gitignore b/.gitignore index 724b2c5..a14e5b1 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,6 @@ out/ data/uploads/* !data/uploads/sample.jpg data/db/* -!data/db/slideshow.json.dist /plugins/user/* !/plugins/user/.gitkeep *.lock diff --git a/data/db/slideshow.json.dist b/data/db/slideshow.json.dist deleted file mode 100755 index 43fba9f..0000000 --- a/data/db/slideshow.json.dist +++ /dev/null @@ -1,37 +0,0 @@ -{ - "version": 2, - "keys": [ - "duration", - "enabled", - "location", - "name", - "position", - "type", - "cron_schedule", - "cron_schedule_end", - "created_by", - "updated_by", - "created_at", - "updated_at" - ], - "data": { - "0": { - "location": "data/uploads/sample.jpg", - "duration": 10, - "type": "picture", - "enabled": true, - "name": "Picture Sample", - "position": 0, - "cron_schedule": null - }, - "1": { - "location": "https://unix.org", - "duration": 20, - "type": "url", - "enabled": true, - "name": "URL Sample", - "position": 1, - "cron_schedule": null - } - } -} \ No newline at end of file diff --git a/docs/setup-run-headless.md b/docs/setup-run-headless.md index 5677891..cf01716 100644 --- a/docs/setup-run-headless.md +++ b/docs/setup-run-headless.md @@ -58,9 +58,6 @@ source ./venv/bin/activate # you'll need to install brew and execute command `brew install sqlite3` pip install -r requirements.txt -# Add some sample data -cp data/db/slideshow.json.dist data/db/slideshow.json - # Customize server default values cp .env.dist .env ``` diff --git a/docs/setup-run-on-rpi.md b/docs/setup-run-on-rpi.md index eb49913..c99645c 100644 --- a/docs/setup-run-on-rpi.md +++ b/docs/setup-run-on-rpi.md @@ -72,9 +72,6 @@ python3 -m venv venv source ./venv/bin/activate pip install -r requirements.txt -# Add some sample data -cp data/db/slideshow.json.dist data/db/slideshow.json - # Customize server default values cp .env.dist .env ```