Skip to content

well1791/well1791.github.io

Repository files navigation

My resume

Tech stack

Setup

To get the dependencies installed, just do this in the root directory:

yarn install

Fire it up

yarn redwood dev

Your browser should open automatically to http://localhost:8910 to see the web app. Server functions run on http://localhost:8911 and are also proxied to http://localhost:8910/.redwood/functions/*.

Deploy

For now the solution is pretty much this

yarn rw build web && \
rm -rf docs && \
mv web/dist docs && \
git add . && \
git commit -m "Update site" && \
git push --set-upstream origin "$(git-branch-current 2>/dev/null)"