initial commit
This commit is contained in:
commit
c7843dc53c
107
.drone.yml
Normal file
107
.drone.yml
Normal file
@ -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: {}
|
123
.releaserc
Normal file
123
.releaserc
Normal file
@ -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
|
6
CHANGELOG.md
Normal file
6
CHANGELOG.md
Normal file
@ -0,0 +1,6 @@
|
||||
# 1.0.0 (2021-09-11)
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* :100: ([ced43c3](https://git.sthope.dev/sthope/DockerContainer-randomPwd/commit/ced43c30463eb97caec004d84c0b900a8cefa5b5))
|
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@ -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"]
|
9
LICENSE
Normal file
9
LICENSE
Normal file
@ -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.
|
39
README-pt-PT.md
Normal file
39
README-pt-PT.md
Normal file
@ -0,0 +1,39 @@
|
||||
[ENGLISH](./README.md)
|
||||
|
||||
[<img src="https://git.sthope.dev/sthope/.gitea/raw/branch/master/avatar-sthope.png" align="right" width="8%" height="8%">](https://www.sthope.dev/)
|
||||
|
||||
# Random Password Generator (x10) · [](https://drone.sthope.dev/sthope/DockerContainer-randomPwd) [](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
|
||||
```
|
||||
|
||||

|
||||
|
||||
## 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.
|
42
README.md
Normal file
42
README.md
Normal file
@ -0,0 +1,42 @@
|
||||
|
||||
|
||||
|
||||
[Português](./README-pt-PT.md)
|
||||
|
||||
[<img src="https://git.sthope.dev/sthope/.gitea/raw/branch/master/avatar-sthope.png" align="right" width="8%" height="8%">](https://www.sthope.dev/)
|
||||
|
||||
# Random Password Generator (x10) · [](https://drone.sthope.dev/sthope/DockerContainer-randomPwd) [](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
|
||||
```
|
||||
|
||||

|
||||
|
||||
## 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.
|
BIN
img/test.png
Normal file
BIN
img/test.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 66 KiB |
19
randomPwd/randomPwd.py
Normal file
19
randomPwd/randomPwd.py
Normal file
@ -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)
|
Loading…
x
Reference in New Issue
Block a user