Deployment
ATS Screener is designed for Vercel but works on any platform that supports SvelteKit.
Vercel (Recommended)
Section titled “Vercel (Recommended)”The project is pre-configured with @sveltejs/adapter-vercel.
# install Vercel CLIpnpm add -g vercel
# deployvercel --prodSet Environment Variables
Section titled “Set Environment Variables”In the Vercel dashboard:
- Go to your project > Settings > Environment Variables
- Add your API keys:
GEMINI_API_KEY(required)GROQ_API_KEY(recommended fallback)
- Add your Firebase config (all
PUBLIC_FIREBASE_*variables from.env.example)
Netlify
Section titled “Netlify”# install the adapterpnpm add -D @sveltejs/adapter-netlify
# update svelte.config.js to use adapter-netlify
# deploy via Netlify CLI or Git integrationDocker
Section titled “Docker”FROM node:20-slim AS baseRUN npm i -g pnpm
WORKDIR /appCOPY package.json pnpm-lock.yaml ./RUN pnpm install --frozen-lockfile
COPY . .RUN pnpm build
FROM node:20-slimWORKDIR /appCOPY --from=base /app/build ./buildCOPY --from=base /app/package.json .
EXPOSE 3000CMD ["node", "build"]Custom Domain
Section titled “Custom Domain”After deploying to Vercel:
- Go to your project’s Settings > Domains
- Add your domain
- Follow the DNS instructions
- SSL is automatic
Attribution
Section titled “Attribution”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.