-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
web: Init first version with downloading snapshots, closes #1
Signed-off-by: Mikhail Petrov <[email protected]>
- Loading branch information
1 parent
ed86d2b
commit 6444fce
Showing
18 changed files
with
1,252 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"name": "archive-fs-neo-org", | ||
"version": "0.0.1", | ||
"private": true, | ||
"dependencies": { | ||
"@fortawesome/fontawesome-svg-core": "^6.4.0", | ||
"@fortawesome/free-brands-svg-icons": "^6.4.0", | ||
"@fortawesome/free-regular-svg-icons": "^6.4.0", | ||
"@fortawesome/free-solid-svg-icons": "^6.4.0", | ||
"@fortawesome/react-fontawesome": "^0.2.0", | ||
"@types/react": "^18.2.41", | ||
"@types/react-dom": "^18.2.17", | ||
"bulma": "^0.9.4", | ||
"react": "^17.0.2", | ||
"react-bulma-components": "^4.1.0", | ||
"react-dom": "^17.0.2", | ||
"react-router-dom": "^6.10.0" | ||
}, | ||
"scripts": { | ||
"start": "REACT_APP_VERSION=$(make version) GENERATE_SOURCEMAP=false react-scripts start", | ||
"build": "GENERATE_SOURCEMAP=false BUILD_PATH='./archive.fs.neo.org' react-scripts build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject" | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"react-app", | ||
"react-app/jest" | ||
] | ||
}, | ||
"browserslist": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"devDependencies": { | ||
"dotenv": "^16.0.3", | ||
"react-scripts": "^5.0.1", | ||
"typescript": "^4.9.5" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,28 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<title>Archive.NeoFS</title> | ||
<meta charset='utf-8'> | ||
<link rel="icon" href="%PUBLIC_URL%/img/favicon.ico"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="title" content="Archive.NeoFS – Download Blockchain Data Snapshot"> | ||
<meta name="description" content="Download an offline package of the blockchain data up to a certain block height"> | ||
<meta property="og:url" content="https://archive.fs.neo.org"> | ||
<meta property="og:title" content="Archive.NeoFS – Download Blockchain Data Snapshot"> | ||
<meta property="og:description" content="Download an offline package of the blockchain data up to a certain block height"> | ||
<meta property="og:type" content="website"> | ||
<meta property="og:image" content="/img/cover.png"> | ||
<meta name="theme-color" content="#29363b" /> | ||
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; script-src 'self'; connect-src 'self' https://archive.fs.neo.org https://rest.fs.neo.org https://rest.t5.fs.neo.org https://rpc1.morph.fs.neo.org:40341 https://rpc1.morph.t5.fs.neo.org:51331; style-src 'unsafe-inline' 'self' https://fonts.googleapis.com; font-src https://fonts.gstatic.com; img-src 'self'; form-action 'self'; base-uri 'self';"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;800&display=swap" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.