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
- Host: GitHub
- URL: https://github.com/jpaddeo/astro-random-password-generator
- Owner: jpaddeo
- Created: 2023-03-28T00:44:13.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-11T19:34:50.000Z (about 2 years ago)
- Last Synced: 2025-02-03T23:32:59.561Z (4 months ago)
- Language: JavaScript
- Homepage: https://randpass.jpaddeo.work
- Size: 92.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Random Passwords / Keys Generator

## π 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 |