Password Manager Web App is a simple web application built using Rust that allows users to manage their passwords securely.
- create, edit, and delete passwords.
- generate strong passwords.
- store passwords securely using encryption.
- user authentication and authorization.
To get started, clone this repository and run the following command to start the server:
$ cargo run
The server will start running on http://localhost:6966.
you dont actually need to set the .env file manually. The project has been set up thorugh .yaml files. And the project will automatically detect the env(local/prod) accordingly.
You can also run the application using Docker. Run the following commands to build and run the Docker image:
$ docker build -t password_manager_web_app .
$ docker run -p 6966:6966 password_manager_web_app