Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1.05 KB

README.md

File metadata and controls

52 lines (30 loc) · 1.05 KB

Tilt DevOps Project Runbook

Pre-requisites

Getting Started

  1. 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

How to Run

  1. Start Tilt:
tilt up
  1. Open Tilt dashboard in your browser to monitor the progress:
http://localhost:10350/
  1. You should be able to access the frontend at http://localhost:3000 and the backend at http://localhost:5000.

How to Verify

  1. Make a change in your frontend or backend code. The changes should be reflected automatically.

  2. Check the database. Initial data should be seeded.

  3. Visit the Tilt dashboard to monitor logs and service status.