Skip to content

Deployment

ATS Screener is designed for Vercel but works on any platform that supports SvelteKit.

The project is pre-configured with @sveltejs/adapter-vercel.

Terminal window
# install Vercel CLI
pnpm add -g vercel
# deploy
vercel --prod

In the Vercel dashboard:

  1. Go to your project > Settings > Environment Variables
  2. Add your API keys:
    • GEMINI_API_KEY (required)
    • GROQ_API_KEY (recommended fallback)
  3. Add your Firebase config (all PUBLIC_FIREBASE_* variables from .env.example)
Terminal window
# install the adapter
pnpm add -D @sveltejs/adapter-netlify
# update svelte.config.js to use adapter-netlify
# deploy via Netlify CLI or Git integration
FROM node:20-slim AS base
RUN npm i -g pnpm
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
COPY . .
RUN pnpm build
FROM node:20-slim
WORKDIR /app
COPY --from=base /app/build ./build
COPY --from=base /app/package.json .
EXPOSE 3000
CMD ["node", "build"]

After deploying to Vercel:

  1. Go to your project’s Settings > Domains
  2. Add your domain
  3. Follow the DNS instructions
  4. SSL is automatic

ATS Screener is MIT licensed. You’re free to self-host, fork, and modify it. The MIT license requires that the original copyright notice and LICENSE file remain intact in your copy of the source code.

Beyond the license, this project has a strong community expectation around visible attribution. If you deploy a public instance or build a product on top of ATS Screener, you are expected to include a visible credit in your site’s footer linking back to the original project and repository and crediting Sunny Patel as the creator.

Something like: Built on ATS Screener by Sunny Patel

This is a solo-built project by a student developer who chose to open source it so others could learn from it and use it freely. Respecting that by keeping attribution visible is how open source communities stay healthy. Forks that strip credit and present the work as entirely their own will not receive support, contributions, or upstream updates from this project. Removing attribution and passing it off as your own work isn’t cool.