-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
multi-file, more btns, mobile ui (v0.2.0)
- Loading branch information
1 parent
52b6b92
commit ba2fa37
Showing
91 changed files
with
2,464 additions
and
901 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,13 @@ | ||
/tailwind | ||
/target/ | ||
target/ | ||
*.iml | ||
Cargo.lock | ||
/.idea/ | ||
/.vscode/ | ||
/frontend/.idea/ | ||
/frontend/target/ | ||
/frontend/node_modules/ | ||
/frontend/dist/ | ||
/frontend/img/lottie.js | ||
/frontend/css/output.css | ||
/frontend/package-lock.json | ||
/frontend/Cargo.lock | ||
src-tauri/target/ | ||
src-tauri/Cargo.lock | ||
src-tauri/.idea/ | ||
.vscode/ | ||
target/ | ||
node_modules/ | ||
dist/ | ||
lottie.js | ||
output.css | ||
package-lock.json | ||
target/ | ||
.idea/ | ||
src-tauri/icons |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# An example Trunk.toml with all possible fields along with their defaults. | ||
|
||
[build] | ||
# The index HTML file to drive the bundling process. | ||
# target = "index.desktop.html" | ||
# Build in release mode. | ||
release = true | ||
# The output dir for all final assets. | ||
dist = "dist" | ||
# The public URL from which assets are to be served. | ||
public_url = "/" | ||
# Whether to include hash values in the output file names. | ||
filehash = true | ||
|
||
[watch] | ||
# Paths to watch. The `build.target`'s parent folder is watched by default. | ||
watch = [] | ||
# Paths to ignore. | ||
ignore = [] | ||
|
||
[serve] | ||
# The address to serve on. | ||
address = "127.0.0.1" | ||
# The port to serve on. | ||
port = 8080 | ||
# Open a browser tab once the initial build is complete. | ||
open = false | ||
# Disable auto-reload of the web app. | ||
no_autoreload = false | ||
|
||
[clean] | ||
# The output dir for all final assets. | ||
dist = "dist" | ||
# Optionally perform a cargo clean. | ||
cargo = false | ||
|
||
[tools] | ||
# Default dart-sass version to download. | ||
sass = "1.54.9" | ||
# Default wasm-bindgen version to download. | ||
wasm_bindgen = "0.2.86" | ||
# Default wasm-opt version to download. | ||
wasm_opt = "version_110" | ||
|
||
## proxy | ||
# Proxies are optional, and default to `None`. | ||
# Proxies are only run as part of the `trunk serve` command. | ||
|
||
[[proxy]] | ||
# This WebSocket proxy example has a backend and ws field. This example will listen for | ||
# WebSocket connections at `/api/ws` and proxy them to `ws://localhost:9000/api/ws`. | ||
backend = "ws://localhost:9000/api/ws" | ||
ws = true | ||
|
||
[[proxy]] | ||
# This proxy example has a backend and a rewrite field. Requests received on `rewrite` will be | ||
# proxied to the backend after rewriting the `rewrite` prefix to the `backend`'s URI prefix. | ||
# E.G., `/api/v1/resource/x/y/z` -> `/resource/x/y/z` | ||
rewrite = "/api/v1/" | ||
backend = "http://localhost:9000/" | ||
|
||
[[proxy]] | ||
# This proxy specifies only the backend, which is the only required field. In this example, | ||
# request URIs are not modified when proxied. | ||
backend = "http://localhost:9000/api/v2/" | ||
|
||
[[proxy]] | ||
# This proxy example has an insecure field. In this example, | ||
# connections to https://localhost:9000/api/v3/ will not have certificate validation performed. | ||
# This is useful for development with a server using self-signed certificates. | ||
backend = "https://localhost:9000/api/v3/" | ||
insecure = true | ||
|
||
## hooks | ||
# Hooks are optional, and default to `None`. | ||
# Hooks are executed as part of Trunk's main build pipeline, no matter how it is run. | ||
|
||
# [[hooks]] | ||
# # This hook example shows all the current available fields. It will execute the equivalent of | ||
# # typing "echo Hello Trunk!" right at the start of the build process (even before the HTML file | ||
# # is read). By default, the command is spawned directly and no shell is used. | ||
# stage = "pre_build" | ||
# command = "echo" | ||
# command_arguments = ["Hello", "Trunk!"] | ||
|
||
# [[hooks]] | ||
# # This hook example shows running a command inside a shell. As a result, features such as variable | ||
# # interpolation are available. This shows the TRUNK_STAGING_DIR environment variable, one of a set | ||
# # of default variables that Trunk inserts into your hook's environment. Additionally, this hook | ||
# # uses the build stage, meaning it executes in parallel with all of the existing asset pipelines. | ||
# # stage = "build" | ||
# # command = "sh" | ||
# # command_arguments = ["-c", "echo Staging directory: $TRUNK_STAGING_DIR"] | ||
|
||
# [[hooks]] | ||
# # This hook example shows how command_arguments defaults to an empty list when absent. It also uses | ||
# # the post_build stage, meaning it executes after the rest of the build is complete, just before | ||
# # the staging directory is copied over the dist directory. This means that it has access to all | ||
# # built assets, including the HTML file generated by trunk. | ||
# stage = "post_build" | ||
# command = "ls" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
@font-face { | ||
font-family: "Comfortaa"; | ||
src: local(Comfortaa), url("../fonts/comfortaa.woff2"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Fira Mono"; | ||
src: local(Fira Mono), url("../fonts/fira.woff2"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Inconsolata"; | ||
src: local(Inconsolata), url("../fonts/inconsolata.woff2"); | ||
font-family: "Inter"; | ||
src: local(Inter) | ||
} |
Empty file.
Empty file.
Empty file.
Empty file.
Binary file not shown.
Binary file not shown.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.