-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use proper database and debugging configurations
- Loading branch information
1 parent
7630fde
commit 9d719eb
Showing
11 changed files
with
514 additions
and
391 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Build template | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
DB_DATABASE: db | ||
DB_USER: root | ||
DB_PASSWORD: root | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Start MySQL | ||
run: | | ||
sudo /etc/init.d/mysql start | ||
mysql -e "CREATE DATABASE IF NOT EXISTS $DB_DATABASE;" -u$DB_USER -p$DB_PASSWORD | ||
- name: Build docker image | ||
run: | | ||
docker compose build | ||
docker compose run --rm web composer install | ||
docker compose run --rm web php artisan migrate --force | ||
- name: Run docker container | ||
run: docker compose up -d | ||
|
||
- name: Test if service is reachable | ||
run: | | ||
sleep 30 | ||
curl -v -s --retry 10 --retry-connrefused http://localhost:8000/ | ||
- name: Report error to Sentry | ||
if: failure() | ||
run: | | ||
curl -sL https://sentry.io/get-cli/ | bash | ||
export SENTRY_DSN=${{ secrets.SENTRY_DSN }} | ||
MESSAGE_HEAD='Template: "${{ github.workflow }}" failed in ${{ github.repository }}.' | ||
MESSAGE_BODY='Check <https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}> for more details.' | ||
sentry-cli send-event -m "$MESSAGE_HEAD" -m "$MESSAGE_BODY" --log-level=error |
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,49 @@ | ||
name: Deploy template | ||
|
||
on: | ||
# push: | ||
schedule: | ||
- cron: "10 14 * * *" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
services: | ||
mysql: | ||
image: mysql:8.0 | ||
env: | ||
MYSQL_DATABASE: db | ||
MYSQL_ALLOW_EMPTY_PASSWORD: yes | ||
ports: | ||
- 3306:3306 | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install divio-cli | ||
- name: Deploy to Divio | ||
run: | | ||
divio login ${{ secrets.DIVIO_TOKEN }} | ||
divio app deploy test --remote-id ${{ secrets.DIVIO_WEBSITE_ID }} --build-mode FORCE | ||
- name: Test if website is reachable | ||
run: | | ||
curl -v -s --retry 10 --retry-connrefused ${{ secrets.WEBSITE_URL }} | ||
- name: Report error to Sentry | ||
if: failure() | ||
run: | | ||
curl -sL https://sentry.io/get-cli/ | bash | ||
export SENTRY_DSN=${{ secrets.SENTRY_DSN }} | ||
MESSAGE_HEAD='Template: "${{ github.workflow }}" failed in ${{ github.repository }}.' | ||
MESSAGE_BODY='Check <https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}> for more details.' | ||
sentry-cli send-event -m "$MESSAGE_HEAD" -m "$MESSAGE_BODY" --log-level=error |
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,15 +1,22 @@ | ||
FROM php:8.3-apache | ||
FROM php:8.3-fpm | ||
|
||
ENV COMPOSER_ALLOW_SUPERUSER=1 | ||
|
||
WORKDIR /var/www/html | ||
|
||
RUN apt-get update -y && apt-get install -y openssl zip unzip git | ||
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer | ||
RUN docker-php-ext-install mysqli pdo pdo_mysql | ||
|
||
# install composer | ||
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer | ||
|
||
COPY composer.* /var/www/html/ | ||
RUN composer install --no-interaction --no-dev --no-scripts | ||
|
||
COPY . /var/www/html | ||
RUN composer install --prefer-dist | ||
|
||
EXPOSE 80 | ||
|
||
# generate a custom APP_KEY within your environment variables | ||
ENV APP_KEY=${APP_KEY:-"base64:iwGHg6152clSDBYopOY0WR7NjX7sItBuRNArsnLPlTk="} | ||
|
||
CMD ["php", "artisan", "serve", "--host", "0.0.0.0", "--port", "80"] |
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
Oops, something went wrong.