Skip to content

Commit

Permalink
Pull Changes from main (#12)
Browse files Browse the repository at this point in the history
* chore(deps): update docker/setup-buildx-action action to v3

* misc(docs): Update README.md

* chore(deps): update actions/checkout action to v4

* chore(deps): update dependency arctic to v2

* Fix Env Argument (#11)

* Update Dockerfile

* Update Dockerfile

* hotfix(ci/cd): Wrong DATABASE_URL production

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
xyzuan and renovate[bot] authored Nov 5, 2024
1 parent 84590f1 commit 43d9e48
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Initialize Bun Environtment
uses: oven-sh/setup-bun@v2
Expand Down Expand Up @@ -54,10 +54,10 @@ jobs:
if: success()
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Settle up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Declaring some Global Environtment vars
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Initialize Bun Environtment
uses: oven-sh/setup-bun@v2
Expand Down Expand Up @@ -54,10 +54,10 @@ jobs:
if: success()
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Settle up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Declaring some Global Environtment vars
run: |
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
--build-arg BASE_URL=${{ env.BASE_URL }} \
--build-arg DOMAIN=${{ env.DOMAIN }} \
--build-arg PASSWORD_PEPPER=${{ secrets.PASSWORD_PEPPER }} \
--build-arg DATABASE_URL=${{ secrets.DATABASE_URL_DEV }} \
--build-arg DATABASE_URL=${{ secrets.DATABASE_URL }} \
--build-arg GOOGLE_CLIENT_ID=${{ secrets.GOOGLE_CLIENT_ID }} \
--build-arg GOOGLE_CLIENT_SECRET=${{ secrets.GOOGLE_CLIENT_SECRET }} \
--build-arg GITHUB_CLIENT_ID=${{ secrets.GH_CLIENT_ID }} \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Initialize Bun Environment
uses: oven-sh/setup-bun@v2
Expand Down
13 changes: 5 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
# Elysia with Bun runtime
# xyzuan APIs V2
![image](https://github.com/user-attachments/assets/52aba5b1-0691-4657-9daa-0ddb05ea84e3)

## Getting Started

To get started with this template, simply paste this command into your terminal:

```bash
bun create elysia ./elysia-example
```
[![Build xyzuan-api-v2 Production Build](https://github.com/xyzuan/xyzuan.v2.be/actions/workflows/build-prod.yml/badge.svg?branch=main)](https://github.com/xyzuan/xyzuan.v2.be/actions/workflows/build-prod.yml)
[![Build xyzuan-api-v2 Development Build](https://github.com/xyzuan/xyzuan.v2.be/actions/workflows/build-dev.yml/badge.svg?branch=dev)](https://github.com/xyzuan/xyzuan.v2.be/actions/workflows/build-dev.yml)

## Getting Started
## Development

To start the development server run:
Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@elysiajs/swagger": "^1.1.1",
"@lucia-auth/adapter-prisma": "^4.0.1",
"@prisma/client": "5.19.1",
"arctic": "^1.9.2",
"arctic": "^2.0.0",
"cloudinary": "^2.5.1",
"elysia-rate-limit": "^4.1.0",
"lucia": "^3.2.0",
Expand Down

0 comments on commit 43d9e48

Please sign in to comment.