Skip to content

Commit

Permalink
Clone Repo
Browse files Browse the repository at this point in the history
  • Loading branch information
jolsoncruz committed Jun 4, 2024
0 parents commit aef6467
Show file tree
Hide file tree
Showing 111 changed files with 13,716 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"extends": [
"eslint:recommended",
"react-app",
"plugin:react/jsx-runtime",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": true, "tsconfigRootDir": "./" },
"plugins": ["@typescript-eslint"],
"root": true,
"ignorePatterns": ["dist"],
"rules": {
"@typescript-eslint/consistent-type-imports": [
2,
{ "fixStyle": "separate-type-imports" }
],
"@typescript-eslint/no-restricted-imports": [
2,
{
"paths": [
{
"name": "react-redux",
"importNames": ["useSelector", "useStore", "useDispatch"],
"message": "Please use pre-typed versions from `src/app/hooks.ts` instead."
}
]
}
]
},
"overrides": [
{ "files": ["*.{c,m,}{t,j}s", "*.{t,j}sx"] },
{ "files": ["*{test,spec}.{t,j}s?(x)"], "env": { "jest": 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?
4 changes: 4 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"semi": false,
"arrowParens": "avoid"
}
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Diro's World
> Winner of HackDIRO Université de Montreal
A never-ending fantasy world role-playing game (RPG) that is personalized to you and your interests. Powered by Artificial Intelligence.


![diro-world](https://res.cloudinary.com/dm0kkwirn/image/upload/v1708908101/portfolio/projects/lpmtg6umvftbqpbni2ry.gif)

### Tech Stack
- React JS (Progressive Web App)
- Node JS
- Llama CPP (https://github.com/Mozilla-Ocho/llamafile)
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, maximum-scale=1" />
<meta name="theme-color" content="#4F4A4E" />
<title>Diro's World</title>
<link href="/src/rpg/rpgui.css" rel="stylesheet" type="text/css" />
<script src="/src/rpg/rpgui.js"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit aef6467

Please sign in to comment.