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

Added two front-end project #124

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
REACT_APP_RAPIDAPI_KEY = '5gvbmn xcv n'
REACT_APP_CRYPTO_RAPIDAPI_HOST ='sscvnb mn'
REACT_APP_CRYPTO_API_URL = 'azsfxcbm '
REACT_APP_NEWS_API_URL = 'sdfhvbn ,m'
REACT_APP_NEWS_RAPIDAPI_HOST = 'rzedghvbmn '


ESLINT_NO_DEV_ERRORS=true
86 changes: 86 additions & 0 deletions project_cryptoverse-main/project_cryptoverse-main/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
parser: 'babel-eslint',
plugins: [
'react',
],
rules: {
indent: 'off',
'template-curly-spacing': 'off',
'import/extensions': 0,
'react/prop-types': 0,
'linebreak-style': 0,
'react/state-in-constructor': 0,
'import/prefer-default-export': 0,
'max-len': [
2,
250,
],
'no-multiple-empty-lines': [
'error',
{
max: 1,
maxEOF: 1,
},
],
'no-underscore-dangle': [
'error',
{
allow: [
'_d',
'_dh',
'_h',
'_id',
'_m',
'_n',
'_t',
'_text',
],
},
],
'object-curly-newline': 0,
'react/jsx-filename-extension': 0,
'react/jsx-one-expression-per-line': 0,
'jsx-a11y/click-events-have-key-events': 0,
'jsx-a11y/alt-text': 0,
'jsx-a11y/no-autofocus': 0,
'jsx-a11y/no-static-element-interactions': 0,
'react/no-array-index-key': 0,
'jsx-a11y/anchor-is-valid': [
'error',
{
components: [
'Link',
],
specialLink: [
'to',
'hrefLeft',
'hrefRight',
],
aspects: [
'noHref',
'invalidHref',
'preferButton',
],
},
],
},
};
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: adrianhajdin
25 changes: 25 additions & 0 deletions project_cryptoverse-main/project_cryptoverse-main/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
.env
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.env
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
10 changes: 10 additions & 0 deletions project_cryptoverse-main/project_cryptoverse-main/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Cryptoverse - Explore the World of Cryptocurrency

![Cryptoverse](https://i.ibb.co/8gh5Jc8/image.png)

## Introduction
This is a code repository for the corresponding video tutorial.

In this video, we will create a cryptocurrency app. We're going to use React and multiple APIs powered by https://rapidapi.com.

By the end of this video, you will become the master of working with APIs.
Loading