Skip to content

Commit 682a890

Browse files
committed
add loads of plugins
1 parent dd4f16b commit 682a890

File tree

2 files changed

+59
-2
lines changed

2 files changed

+59
-2
lines changed

config-dev.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
define('ASKFORPASSWORD',true);
1515
define('DEVVERSION',true);
1616
$show_dev_errors = 1;
17+
$developer_email = '[email protected]';

setup.sh

Lines changed: 58 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
##
77

88
rm -rf phplist-dev
9+
[[ -d phplist-dev ]] && {
10+
echo Error removing previous folder, please remove manually and try again
11+
exit;
12+
}
913
mkdir phplist-dev
1014
cd phplist-dev
1115
git clone https://github.com/phplist/phplist3
@@ -16,16 +20,68 @@ cd phpListThemes
1620
git clone https://github.com/phpList/phplist-ui-bootlist.git
1721
cd ..
1822
cd phpListPlugins
19-
git clone https://github.com/phpList/phplist-plugin-subjectLinePlaceholdersPlugin.git
2023

2124
## add here any other plugins that you want to check out
25+
## below is the full list of plugins from
26+
## https://resources.phplist.com/plugins/start
27+
28+
git clone https://github.com/bramley/phplist-plugin-addons.git
29+
git clone https://github.com/bramley/phplist-plugin-amazonses.git
30+
git clone https://github.com/michield/phplist-plugin-attributeselect.git
31+
git clone https://github.com/bramley/phplist-plugin-autoresponder.git
32+
git clone https://github.com/bramley/phplist-plugin-botbouncer.git
33+
git clone https://github.com/bramley/phplist-plugin-bounces.git
34+
git clone https://github.com/michield/phplist-plugin-campaignslicer.git
35+
git clone https://github.com/bramley/phplist-plugin-statistics.git
36+
git clone https://github.com/bramley/phplist-plugin-campaigns.git
37+
git clone https://github.com/bramley/phplist-plugin-captcha.git
38+
git clone https://github.com/bramley/phplist-plugin-ckeditor.git
39+
git clone https://github.com/bramley/phplist-plugin-common.git
40+
git clone https://github.com/arnoldle/phplist-plugin-conditionalPlaceholderPlugin.git
41+
git clone https://github.com/bramley/phplist-plugin-contentareas.git
42+
git clone https://github.com/bradallenfisher/phplist-plugin-cosign.git
43+
git clone https://github.com/urapoh/phplist-plugin-customheader.git
44+
git clone https://github.com/michield/phplist-plugin-dateplaceholder.git
45+
git clone https://github.com/michield/phplist-plugin-domainthrottlemap.git
46+
git clone https://github.com/michield/phplist-plugin-embedremoteimages.git
47+
git clone https://github.com/michield/phplist-plugin-fckeditor.git
48+
git clone https://github.com/bramley/phplist-plugin-hcaptcha.git
49+
git clone https://github.com/bramley/phplist-plugin-housekeeping.git
50+
git clone https://github.com/bramley/phplist-plugin-imap.git
51+
git clone https://github.com/arnoldle/phplist-plugin-inlineImagePlugin.git
52+
git clone https://github.com/phpList/phplist-plugin-invite.git
53+
git clone https://github.com/michield/phplist-plugin-listcleaner.git
54+
git clone https://github.com/arnoldle/phplist-plugin-listNamePrefixPlugin.git
55+
git clone https://github.com/bramley/phplist-plugin-mailgun.git
56+
git clone https://github.com/bramley/phplist-plugin-attachment.git
57+
git clone https://github.com/phpList/phplist-plugin-disposablemailblock.git
58+
git clone https://github.com/bramley/phplist-plugin-recaptcha.git
59+
git clone https://github.com/bramley/phplist-plugin-recaptchav3.git
60+
git clone https://github.com/phpList/phplist-plugin-restapi.git
61+
git clone https://github.com/bramley/phplist-plugin-rssfeed.git
62+
git clone https://github.com/michield/phplist-plugin-rssmanager.git
63+
git clone https://github.com/bramley/phplist-plugin-segment.git
64+
git clone https://github.com/bramley/phplist-plugin-sendgrid.git
65+
git clone https://github.com/bramley/phplist-plugin-smtp2go.git
66+
git clone https://github.com/arnoldle/phplist-plugin-subjectLinePlaceholdersPlugin.git
67+
git clone https://github.com/arnoldle/phplist-plugin-subjectPrefixPlugin.git
68+
git clone https://github.com/bramley/phplist-plugin-subscribers.git
69+
git clone https://github.com/bramley/phplist-plugin-timezone.git
70+
git clone https://github.com/bramley/phplist-plugin-tinymce.git
71+
git clone https://github.com/bramley/phplist-plugin-viewbrowser.git
72+
git clone https://github.com/michield/phplist-plugin-subscribeexample.git
73+
git clone https://github.com/phpList/phplist-plugin-simplesaml.git
74+
git clone https://github.com/michield/phplist-plugin-develop.git
2275

2376
cd ..
2477
git clone https://github.com/phpList/phplist-docker.git
2578
cp phplist-docker/.env-dist phplist-docker/.env
79+
echo >> phplist-docker/.env
80+
echo CODE_PATH=$(pwd)/phplist3/ >> phplist-docker/.env
2681
echo THEME_DEV_PATH=$(pwd)/phpListThemes >> phplist-docker/.env
27-
echo CODE_PATH=$(pwd)/phplist3/public_html/ >> phplist-docker/.env
2882
echo PLUGIN_DEV_PATH=$(pwd)/phpListPlugins >> phplist-docker/.env
83+
cp phplist-docker/config-dev.php phplist3/config.php
84+
2985
cd phplist-docker
3086
docker-compose -f phplist-dev.yml up
3187

0 commit comments

Comments
 (0)