Houseplant Nurse is a website for finding information on how to properly care for many different species of houseplants.
This website is a visualization of the data found here: https://extension.uga.edu/publications/detail.html?number=B1318&title=Growing%20Indoor%20Plants%20with%20Success.
Docker docker engine
Docker-Compose to orchestrate database and webapp Docker images
This will build two Docker images:
webapp
, which runs the backend Golang logic, and serves the frontend React clientplant_db
, which runs a dedicated Postgres database used to query houseplant data
docker-compose build
This will serve the webapp on port 5000. You can visit the page in your browser at localhost:5000
docker-compose up