This is a landing page for the PHP Revival browser extension.
All the available NPM command you can find in package.json file.
npm inpm run devNavigate to http://localhost:3000 to see your documentation.
To build an image, navigate to the root of the project and run this command.
With Podman:
podman-compose buildWith Docker:
docker compose buildRun this command to install npm packages and generate a node_modules directory on your local machine.
With Podman:
podman-compose run --rm app npm iWith Docker:
docker compose run --rm app npm iTo run a container, navigate to the root of the project and run this command.
With Podman:
podman-compose up -dWith Docker:
docker compose up -dYou can visit http://localhost:3000 to see your documentation.
With Podman:
podman-compose exec app shWith Docker:
docker compose exec app shYou'll be able to run NPM commands inside of the container.
To stop and remove the container, run this command.
With Podman:
podman-compose downWith Docker:
docker compose down