Repository ini merupakan aplikasi berbasis web yang digunakan untuk seleksi LKS DIY 2023 bidang Cloud Computing.
... * . _ .
* . * . * (_) *
. |* .. * ..
. * \| * ___ . . *
* \/ |/ \/{o,o} .
_\_\ | / /) )* _/_ *
\ \| /,--"-"--- ..
_-----` |(,__,__/__/_ .
\ || ..
||| . *
|||
lkscc |||
, -=-~' .-^- _
git clone --depth 1 https://github.com/denikn/lksdiycc2023
cd lksdiycc2023
rm -rf .git
cp .env.example .env
php artisan key:generate
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=ap-southeast-2
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false
QUEUE_DRIVER=sqs
QUEUE_CONNECTION=sqs
SQS_KEY=<aws_access_key_id>
SQS_SECRET=<aws_secret_access_key>
SQS_QUEUE=<queue name>
SQS_REGION=ap-southeast-2
SQS_PREFIX=https://sqs.ap-southeast-2.amazonaws.com/<aws_account_id>
composer install
php artisan migrate
php -S localhost:8000 -t public
The Laravel framework is open-sourced software licensed under the MIT license.