A sample end-to-end application for tracking daily budgets Language : Python
Setting up - UI Environment
- Navigate inside ui folder
- Run npm install
- Run npm start
This opens up a connection and things are good to go.
Building a docker container
- Run gulp
- Dist folder gets generated, run docker build -t {some-name} .
- This builds the docker container
- To check the files inside the container, use the command,
docker run -it {some-name} /bin/bash
- To bring up the server, use the command,
docker run -p {external-port}:{internal-port} {some-name} eg.) docker run -p 5000:90 budgettracker01 Hit localhost:5000 to see the application