Skip to content

Commit fdf0efb

Browse files
committed
Merge branch 'main' of github.com:pythonpizza/brno.python.pizza
2 parents 4edcf86 + 7d65089 commit fdf0efb

39 files changed

Lines changed: 1621 additions & 0 deletions

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[Makefile]
12+
indent_style = tab

.eslintrc.js

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true,
5+
es6: true,
6+
},
7+
parserOptions: { ecmaVersion: 8 },
8+
ignorePatterns: ["node_modules/*", ".next/*", ".out/*", "!.prettierrc.js"],
9+
extends: ["eslint:recommended"],
10+
plugins: ["simple-import-sort"],
11+
overrides: [
12+
{
13+
files: ["**/*.ts", "**/*.tsx"],
14+
parser: "@typescript-eslint/parser",
15+
settings: { react: { version: "detect" } },
16+
env: {
17+
browser: true,
18+
node: true,
19+
es6: true,
20+
},
21+
extends: [
22+
"eslint:recommended",
23+
"plugin:@typescript-eslint/recommended",
24+
"plugin:react/recommended",
25+
"plugin:react-hooks/recommended",
26+
"prettier/@typescript-eslint",
27+
"plugin:prettier/recommended",
28+
],
29+
rules: {
30+
"simple-import-sort/imports": "error",
31+
"simple-import-sort/exports": "error",
32+
"sort-imports": "off",
33+
"import/order": "off",
34+
"@typescript-eslint/ban-ts-comment": "off",
35+
"react-hooks/exhaustive-deps": "off",
36+
"prettier/prettier": ["error", {}, { usePrettierrc: true }],
37+
"react/prop-types": "off",
38+
"react/react-in-jsx-scope": "off",
39+
"@typescript-eslint/no-unused-vars": ["error"],
40+
"@typescript-eslint/explicit-function-return-type": "off",
41+
"@typescript-eslint/explicit-module-boundary-types": "off",
42+
},
43+
},
44+
],
45+
};

.gitignore

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
9+
# Diagnostic reports (https://nodejs.org/api/report.html)
10+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11+
12+
# Runtime data
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
18+
# Directory for instrumented libs generated by jscoverage/JSCover
19+
lib-cov
20+
21+
# Coverage directory used by tools like istanbul
22+
coverage
23+
*.lcov
24+
25+
# nyc test coverage
26+
.nyc_output
27+
28+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29+
.grunt
30+
31+
# Bower dependency directory (https://bower.io/)
32+
bower_components
33+
34+
# node-waf configuration
35+
.lock-wscript
36+
37+
# Compiled binary addons (https://nodejs.org/api/addons.html)
38+
build/Release
39+
40+
# Dependency directories
41+
node_modules/
42+
jspm_packages/
43+
44+
# TypeScript v1 declaration files
45+
typings/
46+
47+
# TypeScript cache
48+
*.tsbuildinfo
49+
50+
# Optional npm cache directory
51+
.npm
52+
53+
# Optional eslint cache
54+
.eslintcache
55+
56+
# Microbundle cache
57+
.rpt2_cache/
58+
.rts2_cache_cjs/
59+
.rts2_cache_es/
60+
.rts2_cache_umd/
61+
62+
# Optional REPL history
63+
.node_repl_history
64+
65+
# Output of 'npm pack'
66+
*.tgz
67+
68+
# Yarn Integrity file
69+
.yarn-integrity
70+
71+
# dotenv environment variables file
72+
.env
73+
.env.test
74+
75+
# parcel-bundler cache (https://parceljs.org/)
76+
.cache
77+
78+
# Next.js build output
79+
.next
80+
81+
# Nuxt.js build / generate output
82+
.nuxt
83+
dist
84+
85+
# Gatsby files
86+
.cache/
87+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
88+
# https://nextjs.org/blog/next-9-1#public-directory-support
89+
# public
90+
91+
# vuepress build output
92+
.vuepress/dist
93+
94+
# Serverless directories
95+
.serverless/
96+
97+
# FuseBox cache
98+
.fusebox/
99+
100+
# DynamoDB Local files
101+
.dynamodb/
102+
103+
# TernJS port file
104+
.tern-port
105+
106+
out
107+
108+
.DS_Store
109+
110+
.vscode

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
install:
2+
bun
3+
4+
build:
5+
bun build

bun.lockb

140 KB
Binary file not shown.

next-env.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/basic-features/typescript for more information.

next.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = {
2+
typescript: {
3+
// !! WARN !!
4+
// Dangerously allow production builds to successfully complete even if
5+
// your project has type errors.
6+
// !! WARN !!
7+
ignoreBuildErrors: true,
8+
},
9+
};

package.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "brno",
3+
"version": "1.0.0",
4+
"main": "index.js",
5+
"repository": "https://github.com/pythonpizza/brno.python.pizza",
6+
"author": "Jake Balas <jake@balas.io>",
7+
"license": "MIT",
8+
"engines": {
9+
"node": ">=18.17.1"
10+
},
11+
"dependencies": {
12+
"@emotion/react": "^11.11.1",
13+
"@opentelemetry/api": "^1.6.0",
14+
"date-fns": "^2.30.0",
15+
"next": "13.5.6",
16+
"react": "^18.2.0",
17+
"react-dom": "^18.2.0",
18+
"theme-ui": "0.16.1"
19+
},
20+
"scripts": {
21+
"dev": "next dev",
22+
"build": "next build && next export",
23+
"start": "next start"
24+
},
25+
"devDependencies": {
26+
"@types/node": "^20.8.9",
27+
"@types/react": "^18.2.32",
28+
"@types/theme-ui": "^0.6.0",
29+
"@typescript-eslint/eslint-plugin": "^6.9.0",
30+
"@typescript-eslint/parser": "^6.9.0",
31+
"eslint": "^8.52.0",
32+
"eslint-config-prettier": "^9.0.0",
33+
"eslint-plugin-prettier": "^5.0.1",
34+
"eslint-plugin-react": "^7.33.2",
35+
"eslint-plugin-react-hooks": "^4.6.0",
36+
"eslint-plugin-simple-import-sort": "^10.0.0",
37+
"prettier": "^3.0.3",
38+
"typescript": "^5.2.2"
39+
}
40+
}

public/speakers/moises.jpg

65.4 KB
Loading

public/speakers/pizza-square.png

66 KB
Loading

0 commit comments

Comments
 (0)