Skip to content

Commit

Permalink
Barebones stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Yumeo0 committed Nov 10, 2024
0 parents commit d2eb805
Show file tree
Hide file tree
Showing 68 changed files with 20,456 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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?

# Others
public/keys.json
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
}
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# About

This app tries to make your life as a GI player easier by providing useful
features.

## Features

- [ ] Artifact Extractor
- [ ] Built in artifact optimizer (maybe?)

If you want a feature then you can open an issue and I'll see if I can add it

## Development

### Environment Setup

1. Install `Rust`
2. Install `NodeJS`
3. Install `yarn` (npm install -g yarn)

run `yarn` to install dependencies run `yarn tauri dev` to start the app

### Recommended IDE Setup

- [VS Code](https://code.visualstudio.com/) +
[Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) +
[rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
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" class="dark">

<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>Mualani Guide</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

</html>
26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "mualani-guide",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-shell": "^2"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"@tauri-apps/cli": "^2"
}
}
3 changes: 3 additions & 0 deletions proto_gen/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target
/resources/protos/*
/resources/PackIDs.inc
Loading

0 comments on commit d2eb805

Please sign in to comment.