You will need a Docker to start this app
git clone https://github.com/zakh-d/python-fs-internship-frontend.git- Build an image using
docker build -t [image name]
- Run created image
docker run -d -p 80:80 [image name]
In production environment docker will build the app and host it using nginx.
Create .env file based on .env.sample
There is a docker compose file that would set everything up for dev environment
docker compose up -d
This would set up volumes so when there are changes in code server would automatically rebuild.