A simple app leveraging StackExchange APIs to show some StackOverflow accounts information. Made for fun during a weekend as practice.
This project is not affiliated with StackOverflow in any way.
pnpm install
pnpm run dev
If you are forking this, you should register for your own StackApp and update the values in ./src/lib/stackapps/index.ts
accordingly.
The OG image generation requires chromium to be installed. On WSL2, use the following command to install it.
# install packages
sudo apt-get install -y curl unzip xvfb libxi6 libgconf-2-4 fonts-liberation
# get latest chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
# install it
sudo apt install ./google-chrome-stable_current_amd64.deb
There is a bug that cause the OG image generation to not work properly in Node 16. Update the Vercel project to Node 14 to work around this for now. (See related StackOverflow thread)