diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 98d3b75..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: CI - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: npm - - - name: Install dependencies - run: npm ci - - - name: Lint - run: npm run lint - - - name: Build - run: npm run build - env: - VITE_API_BASE_URL: ${{ secrets.VITE_API_BASE_URL }} diff --git a/README.md b/README.md index 60de66f..9cac044 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ React TypeScript web application for the StepFi BNPL protocol on Stellar. -**Live URL:** https://stepfi-web.vercel.app - ## Stack Vite, React 18, TypeScript, Tailwind CSS, Zustand, TanStack Query, Freighter API diff --git a/vercel.json b/vercel.json deleted file mode 100644 index 170b3f6..0000000 --- a/vercel.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "framework": "vite", - "buildCommand": "npm run build", - "outputDirectory": "dist", - "rewrites": [{ "source": "/(.*)", "destination": "/index.html" }] -}