diff --git a/.env b/.env
index 0384b8d..8e88ef1 100644
--- a/.env
+++ b/.env
@@ -2,10 +2,10 @@
# Add this file to .gitignore when using secret data
# Docker Compose environment
-POSTGRES_PASSWORD = demopsw
+POSTGRES_PASSWORD = postgres
# Connection strings
-POSTGRES_URL = postgres://postgres:demopsw@postgres:5432/microservices
+POSTGRES_URL = postgres://postgres:postgres@postgres:5432/microservices
RABBIT_URL = amqp://guest:guest@rabbitmq:5672
SERVER_ADDR = 0.0.0.0:8080
diff --git a/README.md b/README.md
index 2f1a418..9938451 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
A basic example of microservice architecture which demonstrates communication between a few loosely coupled services. This includes messages between a server terminal and a web user interface with a database service in the middle.
-Written in Go, this mainly showcases the exchange of information using RabbitMQ—between backend services—and WebSocket—between frontend and backend.
+Written in Go, this mainly showcases the exchange of information using RabbitMQ—between back end services—and WebSocket—between front end and back end.
The services are built using Docker which includes a multistage build example. The whole application is served with Docker Compose.
@@ -28,7 +28,7 @@ docker attach microservices_backend
### Database
-To inspect the database, launch a new container that will connect to our Postgres database. Then enter the password `demopsw` (see the `.env` file).
+To inspect the database, launch a new container that will connect to our Postgres database. Then enter the password `postgres` (see the `.env` file).
```bash
docker run -it --rm --network microservices_network postgres:13-alpine psql -h postgres -U postgres
@@ -40,3 +40,7 @@ Select everything from the messages table:
\c microservices
select * from messages;
```
+
+### RabbitMQ management
+
+The RabbitMQ management plugin is accessible by visiting `localhost:15672` with `guest` as both username and password.
diff --git a/bootstrap/index.html b/bootstrap/index.html
new file mode 100644
index 0000000..3d3e3ab
--- /dev/null
+++ b/bootstrap/index.html
@@ -0,0 +1,40 @@
+
+
+
+ Microservices
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sent: A message sent to the back end.
+
+
+
+ Received: A message received from the back end.
+