A simple OpenAI implementation to give feedback to your colleagues.
Based on your brain-dump feedback you write to a colleague, a structured feedback is generated by GPT. You must provide the key in order for it to work, or you can copy the prompt in the end so you can paste it in ChatGPT for free.
npm run dev
npm install
Create gh-pages branch
git clone -b gh-pages [email protected]:juampi92/ai-feedback-assistant.git gh-pages
BASE_PATH=/ai-feedback-assistant npm run build
rm -fr gh-pages/*
cp -a ./build/. ./gh-pages/
cd ./gh-pages
touch .nojekyll
git add . && git commit -m "Build for deploy"
git push && cd ..
One-liner
BASE_PATH=/ai-feedback-assistant npm run build && rm -fr gh-pages/* && cp -a ./build/. ./gh-pages/ && cd ./gh-pages && touch .nojekyll && git add . && git commit -m "Build for deploy" && git push && cd ..