- Make sure you have Tilt and Docker installed on your machine.
# macOS
brew install tilt-dev/tap/tilt
# Linux
curl -fsSL https://raw.githubusercontent.com/tilt-dev/tilt/master/scripts/install.sh | bash
# Windows
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/tilt-dev/tilt/master/scripts/install.ps1')
To verify installation, run:
tilt version
- Start Tilt:
tilt up
- Open Tilt dashboard in your browser to monitor the progress:
http://localhost:10350/
- You should be able to access the frontend at
http://localhost:3000
and the backend athttp://localhost:5000
.
-
Make a change in your frontend or backend code. The changes should be reflected automatically.
-
Check the database. Initial data should be seeded.
-
Visit the Tilt dashboard to monitor logs and service status.