diff --git a/app/config/templates/site.php b/app/config/templates/site.php index eec129a7bf..a853955a97 100644 --- a/app/config/templates/site.php +++ b/app/config/templates/site.php @@ -478,7 +478,7 @@ return [ 'frameworks' => [ getFramework('FLUTTER', [ 'providerRootDirectory' => './', - 'buildCommand' => 'bash prepare.sh && bash build.sh', + 'buildCommand' => 'bash build.sh', ]), ], 'vcsProvider' => 'github', @@ -1351,4 +1351,23 @@ return [ 'providerVersion' => '0.3.*', 'variables' => [], ], + [ + 'key' => 'gallery-for-lynx', + 'name' => 'Lynx gallery', + 'tagline' => 'A Lynx website showcasing gallery with smooth animations.', + 'score' => 1, // 0 to 10 based on looks of screenshot (avoid 1,2,3,8,9,10 if possible) + 'useCases' => [UseCases::STARTER], + 'screenshotDark' => $url . '/images/sites/templates/gallery-for-lynx-dark.png', + 'screenshotLight' => $url . '/images/sites/templates/gallery-for-lynx-light.png', + 'frameworks' => [ + getFramework('LYNX', [ + 'providerRootDirectory' => './lynx/gallery', + ]), + ], + 'vcsProvider' => 'github', + 'providerRepositoryId' => 'templates-for-sites', + 'providerOwner' => 'appwrite', + 'providerVersion' => '0.3.*', + 'variables' => [] + ], ]; diff --git a/public/images/sites/templates/gallery-for-lynx-dark.png b/public/images/sites/templates/gallery-for-lynx-dark.png new file mode 100644 index 0000000000..9dfd278985 Binary files /dev/null and b/public/images/sites/templates/gallery-for-lynx-dark.png differ diff --git a/public/images/sites/templates/gallery-for-lynx-light.png b/public/images/sites/templates/gallery-for-lynx-light.png new file mode 100644 index 0000000000..9dfd278985 Binary files /dev/null and b/public/images/sites/templates/gallery-for-lynx-light.png differ