Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Codespace filthy wizard 7q4jqrvgqr63rxqr #153

Open
wants to merge 20 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
0c1fd3a
Create Thumbs.db
1234567891011111112227 Sep 5, 2023
78f2759
Revert "Merge branch 'development' into staging"
1234567891011111112227 Sep 5, 2023
7010132
Revert "Revert "Merge branch 'development' into staging""
1234567891011111112227 Sep 5, 2023
0b76d7a
Revert "Update README.md"
1234567891011111112227 Sep 5, 2023
e87edef
Update README.md
1234567891011111112227 Sep 10, 2023
4958594
Create webpack.yml
1234567891011111112227 Sep 10, 2023
117f8dd
Create FUNDING.yml
1234567891011111112227 Sep 10, 2023
d318be2
Merge branch 'development' into 1234567891011111112227-patch-1
1234567891011111112227 Sep 10, 2023
03ab018
Update README.md
1234567891011111112227 Sep 10, 2023
0bff427
Update issue templates
1234567891011111112227 Sep 10, 2023
b2bfde3
Update README.md
1234567891011111112227 Sep 10, 2023
74dc4e9
Merge pull request #5 from 1234567891011111112227/1234567891011111112…
1234567891011111112227 Sep 10, 2023
766bf2d
Update issue templates
1234567891011111112227 Sep 10, 2023
61a2cf3
Merge pull request #6 from 1234567891011111112227/1234567891011111112…
1234567891011111112227 Sep 10, 2023
5648c23
Update README.md
1234567891011111112227 Sep 10, 2023
8ea5bce
Create Thumbs.db
1234567891011111112227 Sep 11, 2023
5e98660
Update jest.config.js
1234567891011111112227 Sep 11, 2023
ad26103
Merge branch 'development' into 1234567891011111112227-patch-1
1234567891011111112227 Sep 11, 2023
c65e511
On Worldwide Consensus
1234567891011111112227 Nov 16, 2024
bb08728
Merge branch 'development' into codespace-filthy-wizard-7q4jqrvgqr63rxqr
1234567891011111112227 Nov 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Это поддерживаемые платформы модели финансирования

github: # Замените до 4 имен пользователей с поддержкой GitHub Sponsors, например, [user1, user2]
patreon: # Заменить одним именем пользователя Patreon
open_collective: # Заменить одним именем пользователя Open Collective
ko_fi: # Заменить одним именем пользователя Ko-fi
tidelift: # Замените одним именем платформы Tidelift / именем пакета, например, npm / babel
community_bridge: # Замените одним именем проекта Community Bridge, например, cloud-foundry
liberapay: # Заменить на одно имя пользователя Liberapay
issuehunt: # Заменить одним именем пользователя IssueHunt
otechie: # Заменить одним именем пользователя Otechie
lfx_crowdfunding: # Замените одним названием краудфандингового проекта LFX, например, cloud-foundry
custom: # Замените до 4 пользовательских спонсорских URL-адресов, например, ['link1', 'link2']
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/custom.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Custom issue template
about: Describe this issue template's purpose here.
title: ''
labels: ''
assignees: ''

---


20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
28 changes: 28 additions & 0 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: NodeJS with Webpack

on:
push:
branches: [ "development" ]
pull_request:
branches: [ "development" ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install
npx webpack
3 changes: 2 additions & 1 deletion README.md
1234567891011111112227 marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Pi Explorer

## Pi Explorer

A block explorer for the [Pi Blockchain](https://minepi.com) based on Chris Hatch' repository.

Expand Down
3 changes: 1 addition & 2 deletions jest.config.js

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Chukzy1995

Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module.exports = {
collectCoverageFrom: ['src/**/*.{js,jsx}'],
module.exports = { collectCoverageFrom: ['src/**/*.{js,jsx}'],
setupFiles: [
'<rootDir>/config/polyfills.js',
'<rootDir>/config/animationShim.js',
Expand Down
Binary file added public/Thumbs.db

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Chukzy1995

Binary file not shown.
Binary file added screenshots/Thumbs.db

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

screenshots/Thumbs.db

Binary file not shown.