Finally, easy visibility into your remote dev team
Multi-repo Git performance metrics across your team. Instantly.
Secure
- Your code repositories remain 100% on GitHub®.
- Sign in with your existing GitHub account via OAuth—you already have an account!
Save $119,750/year*
- Are you paying $120k/yr for a dev who works only 2h/day? How do you really know?
- See real results. Reward your real performers.
- Empower leaders to run high-performance teams that are fair to your entire
team.
30-Day Free Trial
- No contract
- No commitment
- Cancel anytime in account settings
- Try it today! Sign up in 30sec.
*Median software engineer salary in US.
Est. savings of identifying a non-performing dev.
Dead-Simple Authentication in Minutes!
Test it out for yourself here.
export const appAuth = new SvelteKitAuth({
providers: [
new GoogleOAuthProvider({
clientId: ({}).VITE_GOOGLE_OAUTH_CLIENT_ID,
clientSecret: ({}).VITE_GOOGLE_OAUTH_CLIENT_SECRET,
profile(profile) {
return { ...profile, provider: "google" };
},
}),
],
callbacks: {
jwt(token, profile) {
if (profile?.provider) {
const { provider, ...account } = profile;
token = {
...token,
user: {
...token.user,
connections: { [provider]: account },
},
};
}
return token;
},
},
jwtSecret: ({}).JWT_SECRET_KEY,
});