A Trello clone built with React + TypeScript + Vite + TailwindCSS, used for testing workshops.
Run the setup command in your terminal:
bash <(curl -fsSL https://raw.githubusercontent.com/filiphric/trelloapp-workshop-app/main/setup.sh)The installer will:
- Check that you have
git,node(v20+) andnpminstalled - Clone the project and set up a clean git history
- Ask you to choose between Full install (with tests) or Clean install (app only)
- Install dependencies and verify everything works
Once done, start the app:
cd trelloapp
npm startThe app will be running at http://localhost:3000.
If you prefer to set things up yourself:
git clone https://github.com/filiphric/trelloapp-workshop-app.git trelloapp
cd trelloapp
npm install
cp .env_example .env
npm startIf the setup fails (common on work machines with restricted permissions):
- Ask your system administrator to install git and Node.js v20+
- If your company uses a VPN or proxy, ask IT to allowlist
github.comandregistry.npmjs.org - Contact the workshop instructor for help
