An open API service indexing awesome lists of open source software.

https://github.com/jpaddeo/astro-random-password-generator

Proyecto de generaciΓ³n de passwords random
https://github.com/jpaddeo/astro-random-password-generator

Last synced: 2 months ago
JSON representation

Proyecto de generaciΓ³n de passwords random

Awesome Lists containing this project

README

        

# Random Passwords / Keys Generator

![lookslike](/public/ss_password_generator.png)

## πŸ“ƒ Description
Simple and intuitive app that allows you to generate random passwords / keys to use in your projects (as environment variables, auth keys, password, etc).

## πŸš€ Project Structure

Inside the project, you'll see the following folders and files:

```
/
β”œβ”€β”€ public/
β”‚ └── favicon.svg
β”œβ”€β”€ src/
β”‚ β”œβ”€β”€ components/
β”‚ β”‚ β”œβ”€β”€ icons/
β”‚ β”‚ β”‚ β”œβ”€β”€ CheckCircleIcon.jsx
β”‚ β”‚ β”‚ β”œβ”€β”€ ClipboardIcon.jsx
β”‚ β”‚ β”‚ β”œβ”€β”€ index.jsx
β”‚ β”‚ β”‚ β”œβ”€β”€ LockIcon.jsx
β”‚ β”‚ β”‚ └── RefreshIcon.jsx
β”‚ β”‚ β”œβ”€β”€ partials/
β”‚ β”‚ β”‚ β”œβ”€β”€ Actions.jsx
β”‚ β”‚ β”‚ β”œβ”€β”€ CharOptions.jsx
β”‚ β”‚ β”‚ β”œβ”€β”€ PasswordCard.jsx
β”‚ β”‚ β”‚ └── Slider.jsx
β”‚ β”‚ β”œβ”€β”€ Generator.jsx
β”‚ β”‚ └── GeneratorOptions.jsx
β”‚ β”œβ”€β”€ hooks/
β”‚ β”‚ β”œβ”€β”€ usePasswordGenerator.jsx
β”‚ β”œβ”€β”€ layouts/
β”‚ β”‚ └── Layout.astro
β”‚ └── pages/
β”‚ └── index.astro
└── package.json
└── pnpm-lock.yaml
```

**NOTE:** Any static assets, like images, can be placed in the `public/` directory.

## 🧞 Commands

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------------- | :----------------------------------------------- |
| `pnpm install` | Installs dependencies |
| `pnpm run dev` | Starts local dev server at `localhost:3000` |
| `pnpm run build` | Build your production site to `./dist/` |
| `pnpm run preview` | Preview your build locally, before deploying |
| `pnpm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `pnpm run astro --help` | Get help using the Astro CLI |