Skip to content

Commit

Permalink
Merge pull request #49 from LakshayGMZ/cf-pages
Browse files Browse the repository at this point in the history
Cf pages
  • Loading branch information
martian0x80 authored Jun 9, 2024
2 parents 9b5b2b3 + 4b9eb06 commit 1e6df48
Show file tree
Hide file tree
Showing 8 changed files with 124 additions and 115 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ on:
branches-ignore:
- main
jobs:
setup-preview-environment:
uses: ./.github/workflows/setup-predeploy-env.yml
with:
environment: preview
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
Deploy-Preview:
env:
SITEMAP_DB_URI: ${{ secrets.DEV_SITEMAP_DB_URI }}
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ on:
branches:
- main
jobs:
setup-production-environment:
uses: ./.github/workflows/setup-predeploy-env.yml
with:
environment: production
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
Deploy-Production:
env:
SITEMAP_DB_URI: ${{ secrets.PROD_SITEMAP_DB_URI }}
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ node_modules
# Sentry Config File
.sentryclirc
.vercel
.wrangler
.dev.vars
209 changes: 111 additions & 98 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url><loc>https://www.ipusenpai.in/manifest.webmanifest</loc><lastmod>2024-06-08T17:28:21.276Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.ipusenpai.in/server-sitemap.xml</loc><lastmod>2024-06-08T17:28:21.278Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.ipusenpai.in/manifest.webmanifest</loc><lastmod>2024-06-08T18:04:49.250Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.ipusenpai.in/server-sitemap.xml</loc><lastmod>2024-06-08T18:04:49.250Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
</urlset>
4 changes: 2 additions & 2 deletions sentry.client.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Sentry.init({
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1,

profilesSampleRate: 1,
// profilesSampleRate: 1,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
Expand All @@ -25,7 +25,7 @@ Sentry.init({

// You can remove this option if you're not planning to use the Sentry Session Replay feature:
integrations: [
new Sentry.BrowserProfilingIntegration(),
// new Sentry.BrowserProfilingIntegration(),
Sentry.replayIntegration({
maskAllText: false,
blockAllMedia: true,
Expand Down
2 changes: 1 addition & 1 deletion sentry.server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Sentry.init({

// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1,
profilesSampleRate: 1,
// profilesSampleRate: 1,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
Expand Down
6 changes: 6 additions & 0 deletions wrangler.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
name = "ipusenpai"

pages_build_output_dir = ".vercel/output/static"

compatibility_flags = [ "nodejs_compat" ]
compatibility_date = "2024-06-08"

[vars]
BUN_VERSION = "1.1.9"

0 comments on commit 1e6df48

Please sign in to comment.