Try CodeRev.app for your interviews -- it's free!
https://github.com/user-attachments/assets/fe3cb39b-ba8c-4539-9b5c-cf949794724b
CodeRev is a lightweight tool to help you organize and conduct technical interviews using code reviews rather than leetcode.
In the age of StackOverflow and ChatGPT, is leetcode really the best way to evaluate technical candidates?
Was it ever?
Code review as interview has many benefits for any engineering team:
Why use CodeRev? Why not just a GitHub repo?
Development can be done locally using the Firebase CLI emulators.
web/env.template
as web/.env
and add your Firebase config.# Start the emulators in on console
cd web
yarn # Restore
yarn dev
# Start the backend
firebase emulators:start --only auth,firestore,functions,hosting,storage \
--import .data/firebase --export-on-exit
You'll need a Firebase project to deploy:
# From web:
yarn generate # This will generate the static routes.
# From the root:
firebase deploy
# Deploy only the hosting (making a front-end change):
firebase deploy --only hosting
💡 Note: Functions isn't necessary; I started the project thinking I may need it, but you can ignore it and remove it. You won't be charged for it either way if you deploy it with functions.
Functions framework allows the SSR backend to run on the server. However, this is currently not needed for CodeRev.
To enable, swap the hosting
configuration:
"source": "web",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"frameworksBackend": {
"region": "us-central1"
}
Storage requires that you set up CORS when using a custom domain.
Create the bucket source.coderev.app
and then follow this guide: https://cloud.google.com/storage/docs/using-cors
Instead of doing it from the command line, you can use the Cloud Shell in console and open an editor in browser.
Create a file cors.json
[
{
"origin": ["https://coderev.app"],
"method": ["GET"],
"responseHeader":[
"Access-Control-Allow-Origin"
],
"maxAgeSeconds": 3600
}
]
From the console, run:
gcloud storage buckets update gs://source.coderev.app --cors-file=cors.json