This is a small hobby project for tracking my work sentiment, built using the Next Auth sample project as a starting point.
The deployed version can be found at work-sentiment-tracker.vercel.app
git clone https://github.com/IntusFacultas/work-sentiment-tracker.git
cd work-sentiment-tracker
npm install
touch .env.local
Set the following values
AUTH_SECRET="autogenerate a cryptographically secure hash"
AUTH_GITHUB_ID="check github oauth app"
AUTH_GITHUB_SECRET="check github oauth app"
DATABASE_URL="get from supabase"
VERCEL_TOKEN="get from vercel"
To run your site locally, use:
npm run dev
To run it in production mode, use:
npm run build
npm run start