commit c7843dc53cbb83deec7da75f71cdfbae0ffdb3e2 Author: Sthope Date: Mon Sep 13 19:23:45 2021 +0200 initial commit diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..559439f --- /dev/null +++ b/.drone.yml @@ -0,0 +1,107 @@ +--- +kind: pipeline +name: "test python and publish to dockerhub" +type: docker + +clone: + disable: true + +steps: +- name: skip_tls_clone + image: plugins/git + settings: + depth: 10 + skip_verify: true + +- name: semantic-release + purge: true + image: cphapt/cpha-semantic-release:latest + environment: + GITEA_TOKEN: + from_secret: gitea_token + commands: + - semantic-release + +- name: gitea_release + image: plugins/gitea-release + settings: + api_key: + from_secret: gitea_token + base_url: https://git.sthope.dev + files: dist/* + checksum: + - md5 + - sha1 + - sha256 + - sha512 + - adler32 + - crc32 + note: CHANGELOG.md + when: + event: tag + +- name: setup-virtualenv + image: python:3.7-alpine + commands: + - pip install virtualenv + - virtualenv /tmp/shared/.venv + - source /tmp/shared/.venv/bin/activate + volumes: + - name: shared + path: /tmp/shared + +- name: testing + image: python:3.7-alpine + commands: + - source /tmp/shared/.venv/bin/activate + - python randomPwd/randomPwd.py + - echo $$DRONE_COMMIT_SHA > .tags + volumes: + - name: shared + path: /tmp/shared + +- name: build-and-publish + image: plugins/docker + settings: + purge: false + debug: false + auto_tag: true + dockerfile: Dockerfile + repo: sthopeless/randompwd + username: + from_secret: docker_username + password: + from_secret: docker_password + +- name: discord + image: appleboy/drone-discord + environment: + DISCORD_WEBHOOK_ID: + from_secret: discord_webhook_id + DISCORD_WEBHOOK_TOKEN: + from_secret: discord_webhook_token + settings: + message: > + {{#success build.status}} + βœ… Build #{{build.number}} of `{{repo.name}}` succeeded. + + πŸ“ Commit by {{commit.author}} on `{{commit.branch}}`: + ``` + {{commit.message}} + ``` + 🌐 <{{ build.link }}> + {{else}} + ❌ Build #{{build.number}} of `{{repo.name}}` failed. + πŸ“ Commit by {{commit.author}} on `{{commit.branch}}`: + ``` + {{commit.message}} + ``` + 🌐 <{{ build.link }}> + {{/success}} + when: + status: + - failure + +volumes: +- name: shared + temp: {} diff --git a/.releaserc b/.releaserc new file mode 100644 index 0000000..390d682 --- /dev/null +++ b/.releaserc @@ -0,0 +1,123 @@ +branches: ['master','main'] +ci: true +debug: true +dryRun: false +tagFormat: '${version}' + +# Global plugin options (will be passed to all plugins) +preset: 'conventionalcommits' # angular, conventionalcommits +repositoryUrl: 'https://git.sthope.dev/sthope/DockerContainer-randomPwd.git' # your repository url +giteaUrl: 'https://git.sthope.dev' + +# Responsible for verifying conditions necessary to proceed with the release: +# configuration is correct, authentication token are valid, etc... +verifyConditions: + - '@semantic-release/changelog' + - '@semantic-release/git' + - '@saithodev/semantic-release-gitea' + +# Responsible for determining the type of the next release (major, minor or patch). +# If multiple plugins with a analyzeCommits step are defined, the release type will be +# the highest one among plugins output. +# Look details at: https://github.com/semantic-release/commit-analyzer#configuration +analyzeCommits: + - path: '@semantic-release/commit-analyzer' + releaseRules: + - breaking: true + release: major + - type: build # Changes that affect the build system or external dependencies + release: patch + - type: chore # Other changes that don't modify src or test files + release: false + - type: ci # Changes to our CI configuration files and scripts + release: false + - type: docs # Documentation only changes + release: false + - type: feat # A new feature + release: minor + - type: fix # A bug fix + release: patch + - type: perf # A code change that improves performance + release: patch + - type: refactor # A code change that neither fixes a bug nor adds a feature + release: false + - type: revert # Reverts a previous commit + release: patch + - type: style # Changes that do not affect the meaning of the code + release: false + - type: test # Adding missing tests or correcting existing tests + release: false + +# Responsible for generating the content of the release note. +# If multiple plugins with a generateNotes step are defined, +# the release notes will be the result of the concatenation of each plugin output. +generateNotes: + - path: '@semantic-release/release-notes-generator' + writerOpts: + groupBy: 'type' + commitGroupsSort: 'title' + commitsSort: 'header' + linkCompare: true + linkReferences: true + presetConfig: + types: # looks like it only works with 'conventionalcommits' preset + - type: 'build' + section: '🦊 CI/CD' + hidden: false + - type: 'chore' + section: 'Other' + hidden: false + - type: 'ci' + section: '🦊 CI/CD' + hidden: false + - type: 'docs' + section: 'πŸ“” Docs' + hidden: false + - type: 'example' + section: 'πŸ“ Examples' + hidden: false + - type: 'feat' + section: 'πŸš€ Features' + hidden: false + - type: 'fix' + section: 'πŸ›  Fixes' + hidden: false + - type: 'perf' + section: '⏩ Performance' + - type: 'refactor' + section: ':scissors: Refactor' + hidden: false + - type: 'revert' + section: 'πŸ‘€ Reverts' + - type: 'style' + section: 'πŸ’ˆ Style' + - type: 'test' + section: 'πŸ§ͺ Tests' + hidden: false + + +# Responsible for preparing the release, for example creating or updating files +# such as package.json, CHANGELOG.md, documentation or compiled assets +# and pushing a commit. +prepare: +# - path: '@semantic-release/exec' +# # Execute shell command to set package version +# cmd: './deployment/version-plaintext-set.sh ${nextRelease.version}' +# - path: '@semantic-release/exec' +# cmd: './deployment/version-oas-set.sh ${nextRelease.version} openapi.yaml' + - path: '@semantic-release/exec' + verifyReleaseCmd: "echo ${nextRelease.version} > VERSION.md" + - path: '@semantic-release/changelog' + # Create or update the changelog file in the local project repository +# - path: '@semantic-release/git' + # Push a release commit and tag, including configurable files + message: 'RELEASE: ${nextRelease.version}' + assets: ['CHANGELOG.md'] + +# Responsible for publishing the release. +publish: + - path: '@saithodev/semantic-release-gitea' + +success: false + +fail: false \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c086565 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +# 1.0.0 (2021-09-11) + + +### Performance Improvements + +* :100: ([ced43c3](https://git.sthope.dev/sthope/DockerContainer-randomPwd/commit/ced43c30463eb97caec004d84c0b900a8cefa5b5)) diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..067d58b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.7-alpine + +LABEL org.opencontainers.image.source="https://git.sthope.dev/sthope/DockerContainer-randomPwd" +LABEL Maintainer="Sthope" +LABEL Description="Random Password Generator x10" +LABEL version="0.1" + +ADD randomPwd/ /randomPwd/ + +CMD ["python", "/randomPwd/randomPwd.py"] \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..19a29c8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2021 Sthope hopelessautomations@gmail.com + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README-pt-PT.md b/README-pt-PT.md new file mode 100644 index 0000000..24acf55 --- /dev/null +++ b/README-pt-PT.md @@ -0,0 +1,39 @@ +[ENGLISH](./README.md) + +[](https://www.sthope.dev/) + +# Random Password Generator (x10) · [![Build Status](https://img.shields.io/drone/build/sthope/DockerContainer-randomPwd?server=https%3A%2F%2Fdrone.sthope.dev&style=plastic)](https://drone.sthope.dev/sthope/DockerContainer-randomPwd) [![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=plastic&logo=appveyor)](LICENSE) + +> πŸ”₯[Sthope](https://www.sthope.dev) + +Docker container usado para gerar 10 random passwords compridas. Usado maioritariamente no meu site para criar passwords templates. + +## Installing / Getting started + +Script usado para gerar passwords templates para usar nos meus dockers (e outros..) templates. + +```shell +docker run -it --rm ghcr.io/sthopeless/randompwd:latest +``` +ou com sudo +```shell +sudo docker run -it --rm ghcr.io/sthopeless/randompwd:latest +``` + +![test](test.png) + +## Versioning + +We can maybe use [SemVer](http://semver.org/) for versioning. For the versions available, see the [link to tags on this repository](/tags). + +## Configuration + +Simplesmente corre um dos commandos ali de cima e ira imprimir 10 random passwords na terminal. + +## Issue feedback + +You can ge feedback on issues you encounter via [Issue](https://git.sthope.dev/sthope/DockerContainer-randomPwd/issues) + +## Licensing + +For more information, please refer to the [LICENSE](LICENSE) file. diff --git a/README.md b/README.md new file mode 100644 index 0000000..0ba1e7d --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ + + + +[PortuguΓͺs](./README-pt-PT.md) + +[](https://www.sthope.dev/) + +# Random Password Generator (x10) · [![Build Status](https://img.shields.io/drone/build/sthope/DockerContainer-randomPwd?server=https%3A%2F%2Fdrone.sthope.dev&style=plastic)](https://drone.sthope.dev/sthope/DockerContainer-randomPwd) [![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=plastic&logo=appveyor)](LICENSE) + +> πŸ”₯[Sthope](https://www.sthope.dev) + +Docker container used to generate 10 random long passwords. Mostly to use on my website as templates. + +## Installing / Getting started + +Script used to generate passwords and usernames for my website examples + +```shell +docker run -it --rm ghcr.io/sthopeless/randompwd:latest +``` +or with sudo +```shell +sudo docker run -it --rm ghcr.io/sthopeless/randompwd:latest +``` + +![test](img/test.png) + +## Versioning + +We can maybe use [SemVer](http://semver.org/) for versioning. For the versions available, see the [link to tags on this repository](/tags). + +## Configuration + +Simply run one of the above commands, it will print out 10 random passwords + +## Issue feedback + +You can ge feedback on issues you encounter via [Issue](https://git.sthope.dev/sthope/DockerContainer-randomPwd/issues/new) + +## Licensing + +For more information, please refer to the [LICENSE](LICENSE) file. diff --git a/img/test.png b/img/test.png new file mode 100644 index 0000000..c564c99 Binary files /dev/null and b/img/test.png differ diff --git a/randomPwd/randomPwd.py b/randomPwd/randomPwd.py new file mode 100644 index 0000000..f25d717 --- /dev/null +++ b/randomPwd/randomPwd.py @@ -0,0 +1,19 @@ +import random +import string + +def randomPwd(length): + chars = string.ascii_letters + string.digits + pwd = ''.join(random.choice(chars) for i in range(length)) + print(pwd) + +randomPwd(18) +randomPwd(18) +randomPwd(18) +randomPwd(18) +randomPwd(18) +randomPwd(18) +randomPwd(18) +randomPwd(18) +randomPwd(18) +randomPwd(18) +randomPwd(18)