Skip to content

Commit

Permalink
Rework to Next 14 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorenzo-Pappalardo authored Jul 28, 2024
1 parent deafe42 commit a01a52a
Show file tree
Hide file tree
Showing 73 changed files with 24,400 additions and 3,812 deletions.
6 changes: 5 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
node_modules
Dockerfile
.dockerignore
.git
.yarn
.vscode
.next
30 changes: 1 addition & 29 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,3 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"next/core-web-vitals",
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:@typescript-eslint/strict"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": ["react", "@typescript-eslint"],
"rules": {
"react/react-in-jsx-scope": "off",
"@typescript-eslint/array-type": [
"warn",
{
"default": "generic",
"readonly": "generic"
}
]
}
"extends": "next/core-web-vitals"
}
7 changes: 4 additions & 3 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
name: Create and publish a Docker image
name: Build Docker image

on:
push:
branches:
- 'main'
- main

jobs:
build:
uses: unict-dmi/reusable-workflows/.github/workflows/docker.yml@main
with:
repo_ref: ${{ github.repository }}
repo_ref: ${{ github.repository }}
10 changes: 2 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
.pnp.*
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
Expand All @@ -28,7 +27,6 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local
Expand All @@ -40,8 +38,4 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts

# Server cache
/cachedData

# Workbox
/public/*.js
/cachedData
17,431 changes: 17,431 additions & 0 deletions .pnp.cjs

Large diffs are not rendered by default.

Loading

0 comments on commit a01a52a

Please sign in to comment.