Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
bun-version: 1.2

- name: build vitepress docs (bun)
env:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/quality-gateway-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,22 @@ jobs:
quality_gateway:
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
runs-on: ubuntu-latest

environment: Development
env:
TURSO_AUTH_TOKEN: ${{ secrets.TURSO_AUTH_TOKEN }}
TURSO_CONNECTION_URL: ${{ secrets.TURSO_CONNECTION_URL }}

steps:
- uses: actions/checkout@v2

- name: setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
bun-version: 1.2

- run: bun install --frozen-lockfile

- run: bun lint
- run: bunx react-router build

Expand All @@ -26,6 +31,7 @@ jobs:
pull-requests: write
steps:
- uses: actions/checkout@v4

- uses: mongolyy/reviewdog-action-biome@v1
with:
github_token: ${{ secrets.github_token }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
- uses: actions/checkout@v3

- name: Create release with tag
uses: marco-souza/tag-release@1.0.1
uses: marco-souza/tag-release@1.2.0
with:
title: 🚀 Release
version-file: package.json
token: ${{ secrets.GITHUB_TOKEN }}

6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
bun-version: 1.2

- name: Run unit-tests
run: |
bun install --frozen-lockfile && bun run test
Expand All @@ -28,7 +30,7 @@ jobs:

- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
bun-version: 1.2

- name: Install dependencies
run: |
Expand Down
1,890 changes: 1,890 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

Binary file removed bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
console.log("Hello via Bun!");
console.log("Hello via Bun!");
11 changes: 7 additions & 4 deletions packages/components/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@ export default function HeroSection() {
<p className="max-w-3xl text-gray-500">{site.description}</p>

<div className="grid gap-6 grid-cols-2">
<a href={links.home} className="btn btn-outline">
{texts.home}
<a href={links.cta.secondary} className="btn btn-outline">
{texts.cta.secondary}
</a>

<a href={links.home} className="btn btn-secondary btn-outline">
{texts.join}
<a
href={links.cta.primary}
className="btn btn-secondary btn-outline"
>
{texts.cta.primary}
</a>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions packages/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ function NavBar() {
className="flex w-full items-center justify-center gap-2 md:w-auto"
>
<Logo size="small" />
<p className="hidden md:inline"> PodCodar </p>
</Link>

<div className="hidden w-full items-center justify-between md:flex">
Expand Down
42 changes: 22 additions & 20 deletions packages/components/icons/Logo.tsx

Large diffs are not rendered by default.

11 changes: 10 additions & 1 deletion packages/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const site = {
homepage: "https://fullstack-template-bng.pages.dev/",
title: "Welcome to the new world 🌎",
description:
"This is your PodCodar react-router Framework bootstrap, to facilitate your project criation",
"We've created this fullstack template with React Rounter Framework, Bun, Tailwind CSS, and TypeScript so you don't have to.",
};

export const cookies = {
Expand Down Expand Up @@ -40,6 +40,11 @@ export const links = {
// add links
home: "/",

cta: {
primary: "https://podcodar.org",
secondary: "/",
},

social: {
linkedin: "https://www.linkedin.com/podcodar",
github: "https://github.com/podcodar/fullstack-template",
Expand All @@ -49,4 +54,8 @@ export const links = {
export const texts = {
home: "Homepage",
join: "Join us",
cta: {
primary: "Join us",
secondary: "Learn more",
},
};
12 changes: 4 additions & 8 deletions public/images/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions worker-configuration.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Generated by Wrangler by running `wrangler types`

interface Env {
TURSO_CONNECTION_URL: string;
TURSO_AUTH_TOKEN: string;
TURSO_CONNECTION_URL: string;
TURSO_AUTH_TOKEN: string;
}
Loading