Conversational voice enabled news application
Live ||
Video Demo
- React
- Alan AI
- Docker
Firstly, download Docker desktop and follow its instructions to install it. This allows us to start using Docker containers.
Then run
docker-compose build
This spins up Compose and builds a local development environment according to our specifications in docker-compose.yml.
After the containers have been built (this may take a few minutes), run
docker-compose up
This one command boots up a local server (on port 3000). Head over to
http://localhost:3000/
and see the application running.
Finally, to gracefully stop running our local servers, you can run
docker-compose down
in a separate terminal window or press control + C.