-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab934e5
commit 9432292
Showing
6 changed files
with
79 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
data: { } | ||
size: 389 | ||
last_modified: 1712866481 | ||
width: 1512.0 | ||
height: 382.0 | ||
mime_type: image/svg+xml | ||
duration: null |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/sh | ||
|
||
# Install PHP & WGET | ||
yum install -y amazon-linux-extras | ||
amazon-linux-extras enable php8.1 | ||
yum clean metadata | ||
yum install php php-{common,curl,mbstring,gd,gettext,bcmath,json,xml,fpm,intl,zip,imap} | ||
yum install wget | ||
|
||
# INSTALL COMPOSER | ||
EXPECTED_CHECKSUM="$(wget -q -O - https://composer.github.io/installer.sig)" | ||
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" | ||
ACTUAL_CHECKSUM="$(php -r "echo hash_file('sha384', 'composer-setup.php');")" | ||
|
||
if [ "$EXPECTED_CHECKSUM" != "$ACTUAL_CHECKSUM" ] | ||
then | ||
>&2 echo 'ERROR: Invalid installer checksum' | ||
rm composer-setup.php | ||
exit 1 | ||
fi | ||
|
||
php composer-setup.php --quiet | ||
rm composer-setup.php | ||
|
||
# INSTALL COMPOSER DEPENDENCIES | ||
php composer.phar install | ||
|
||
# GENERATE APP KEY | ||
php artisan key:generate | ||
|
||
# BUILD STATIC SITE | ||
php please ssg:generate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
<section class="bg-amp-blue-900 py-20"> | ||
<div class="container mx-auto px-4 flex flex-row"> | ||
<section class=" h-96 py-20 hero"> | ||
<div class="container mx-auto px-4 flex flex-col"> | ||
<div class="max-w-3xl mx-auto"> | ||
<h1 class="text-4xl font-bold mb-6">Amplitude Documentation</h1> | ||
<p class="text-lg mb-8">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ut gravida nunc, id tincidunt nisl.</p> | ||
<a href="#" class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded">Get Started</a> | ||
<h1 class="text-5xl font-light mb-6 mx-auto text-center">Amplitude Documentation</h1> | ||
</div> | ||
<div> | ||
<img class="m-0" src="https://placehold.co/590x290" alt="" srcset=""> | ||
<div class="mx-auto"> | ||
<input class="mx-auto w-96 rounded-full border-amp-gray-300" type="text" name="" id=""> | ||
</div> | ||
</div> | ||
</section> |