-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
236 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 11 additions & 8 deletions
19
.github/bug_report.md → .github/ISSUE_TEMPLATE/bug_report.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
--- | ||
name: Bug Report | ||
about: Use this template for reporting a bug | ||
labels: "Type: Bug" | ||
name: Bug report | ||
about: Use this template for reporting a bug. | ||
title: '' | ||
labels: 'Type: Bug' | ||
assignees: Levminer | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
**Describe the bug:** | ||
|
||
- A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
**To Reproduce:** | ||
|
||
- Steps to reproduce the behavior (Detailed steps): | ||
|
||
**Expected behavior** | ||
**Expected behavior:** | ||
|
||
- A clear and concise description of what you expected to happen. | ||
|
||
**Version Info** | ||
**Version Info:** | ||
|
||
- Paste version informations here (Top menu > Info > About > Copy): | ||
|
||
**Additional context** | ||
**Additional context:** | ||
|
||
- Add any other context about the problem here. |
15 changes: 9 additions & 6 deletions
15
.github/feature_request.md → .github/ISSUE_TEMPLATE/feature_request.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,24 @@ | ||
--- | ||
name: Feature Request | ||
name: Feature request | ||
about: Use this template for creating a feature request | ||
labels: "Type: Feature" | ||
title: '' | ||
labels: 'Type: Feature' | ||
assignees: Levminer | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
**Is your feature request related to a problem? Please describe:** | ||
|
||
- A clear and concise description of what the problem is. | ||
|
||
**Describe the solution you'd like** | ||
**Describe the solution you'd like:** | ||
|
||
- A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
**Describe alternatives you've considered:** | ||
|
||
- A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
**Additional context:** | ||
|
||
- Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Security Policy | ||
|
||
- This is Authme's security policy. | ||
|
||
## Supported Versions | ||
|
||
- There are the currently supported versions: | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| 1.x.x | :x: | | ||
| 2.x.x | :white_check_mark: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
- Please report security vulnerabilitys thru email at: <[email protected]> | ||
|
||
## Release cycle | ||
|
||
- Standard updates: Coming on Tuesdays if everything is going well. | ||
- Hotfix updates or Security updates: On Tuesdays, Thursdays or Saturdays if there is a problem that can not wait until the next Tuesday. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [main, dev] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [main, dev] | ||
schedule: | ||
- cron: "43 17 * * 4" | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: ["javascript"] | ||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] | ||
# Learn more: | ||
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v1 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
# By default, queries listed here will override any specified in a config file. | ||
# Prefix the list here with "+" to use these queries and those in the config file. | ||
# queries: ./path/to/local/query, your-org/your-repo/queries@main | ||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, then you should remove it and run the build manually (see below) | ||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v1 | ||
|
||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 https://git.io/JvXDl | ||
|
||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines | ||
# and modify them (or add more) to build your code if your project | ||
# uses a compiled language | ||
|
||
#- run: | | ||
# make bootstrap | ||
# make release | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,22 +2,47 @@ | |
|
||
- Simple cross platform two-factor authentication app for desktop. | ||
|
||
# How to use | ||
## Authme Web Beta | ||
|
||
- For non technical people: Instructions in the app | ||
- For technical people: Check out this [Readme](https://github.com/Levminer/authme/blob/main/extract/README.md) | ||
- Authme is now available as a web app in beta version. It's a PWA app to, so you can install it on your phone! | ||
- Try it out and give feedback: [Authme Web](https://github.com/levminer/authme-web) | ||
|
||
# Development | ||
## How to use | ||
|
||
- Simple quick start guide. | ||
|
||
#### Getting started | ||
|
||
- Currently you can import codes to Authme two ways: | ||
|
||
1. From Google Authenticator: (Example: Import all of your saved QR codes from your Google Authenticator app.) | ||
1. From stand alone QR codes: (Example: You screenshot all the QR codes from your favourite websites, and import all of them to Authme.) | ||
|
||
### How to import | ||
|
||
- If you are importing from Google Authenticator you have to install [Python](https://www.python.org/downloads/) | ||
|
||
1. For non technical people: Instructions in the app. | ||
1. For technical people: Check out this: [Readme](https://github.com/Levminer/authme/blob/main/extract/README.md) | ||
|
||
## Release cycle | ||
|
||
- Standard updates: Coming on Tuesdays if everything is going well. | ||
- Hotfix updates or Security updates: On Tuesdays, Thursdays or Saturdays if there is a problem that can not wait until the next Tuesday. | ||
|
||
## Development | ||
|
||
- Start app: `npm run start` | ||
- Build app: `npm run build` | ||
- Package app: `npm run package` | ||
- Lint app: `npm run lint` | ||
|
||
# Contrubuting | ||
## Contributing | ||
|
||
- Read: [Contributing](https://github.com/Levminer/authme/blob/main/.github/CONTRIBUTING.md) | ||
|
||
- Read [Contributing](https://github.com/Levminer/authme/blob/main/.github/CONTRIBUTING.md) | ||
## License | ||
|
||
# License | ||
- This software is licensed under: [MIT](https://github.com/Levminer/authme/blob/main/LICENSE.md) | ||
|
||
- MIT | ||
- If you are planning to use this software as a business please contact me at: <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.