Skip to content

Commit

Permalink
finally
Browse files Browse the repository at this point in the history
  • Loading branch information
eternalvision committed Jan 11, 2024
1 parent bc7b200 commit 73bdfa4
Show file tree
Hide file tree
Showing 20 changed files with 4,823 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
68 changes: 68 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build and Deploy

on:
push:
branches:
- main # или ваша рабочая ветка

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: "18"

- name: Install Dependencies
run: npm install

- name: Check if ./dist exists
id: check-dist
run: |
if [[ -d "dist" ]]; then
echo "Dist directory exists"
echo "::set-output name=exists::true"
else
echo "Dist directory does not exist"
echo "::set-output name=exists::false"
fi
- name: List directory before build
run: ls -la

- name: Build
run: npm run build

- name: List directory after build
run: ls -la

- name: Check Dist Directory After Build
run: |
if [[ -d "dist" ]]; then
echo "Dist directory exists after build"
ls -la dist
else
echo "Dist directory does not exist after build"
exit 1
fi
- name: Push to dev branch
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git checkout -B dev
git add -f ./dist || echo "Failed to add dist"
git commit -m "Add dist" || echo "No changes to commit"
git remote set-url origin https://x-access-token:${{ secrets.MY_GITHUB_TOKEN }}@github.com/eternalvision/ReactRandomColorGrid.git
git push -u origin dev --force || echo "Failed to push"
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.MY_GITHUB_TOKEN }}
publish_dir: ./dist
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# React-CameraASCIITransducer
# React + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Camera ASCII Transducer</title>
</head>
<body>
<!-- Created by Alexandr Priadchenko: https://github.com/eternalvision -->
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit 73bdfa4

Please sign in to comment.