Skip to content

Commit

Permalink
feat: add boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-felipecrs committed May 7, 2024
0 parents commit 37f2b91
Show file tree
Hide file tree
Showing 28 changed files with 6,527 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# finance.appReact + TypeScript + Vite

Esse projeto foi criado com o propósito de explicar um pouco sobre React.js para estudantes em Desenvolvimento de Sistemas.

## 🔨 Tecnologies

- [ReactJS](https://reactjs.org/)
- [TypeScript](https://www.typescriptlang.org/)
- [TawilwindCSS](https://tailwindcss.com/)
- [shadcn/ui](https://ui.shadcn.com/)
- [date-fns](https://date-fns.org/)

## 💻 Introdução

### Requisitos

- Você precisa instalar o [Node.js](https://nodejs.org/en/download/) para rodar esse projeto.

**Clona o projeto e acessa a pasta**

```bash
$ git clone https://github.com/dev-felipecrs/finance-app-boilerplate-etec-paulistano.git && cd finance-app-boilerplate-etec-paulistano
```
**Siga os passos abaixo**

```bash
# Instalar as dependências
$ npm i
# Rodar o projeto
$ npm run dev
```
O aplicativo estará disponível para acesso no navegador em `http://localhost:5173`

---

Feito por Felipe Costa e grupo
17 changes: 17 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.js",
"css": "src/styles/globals.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
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" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>finance.app - ETEC Paulistano</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit 37f2b91

Please sign in to comment.