Skip to content

Commit

Permalink
open sourcing repo
Browse files Browse the repository at this point in the history
  • Loading branch information
hypergig committed Nov 19, 2023
1 parent da3bfa1 commit 31cc44b
Show file tree
Hide file tree
Showing 47 changed files with 13,396 additions and 0 deletions.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
layout node
18 changes: 18 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
],
ignorePatterns: ["dist", ".eslintrc.cjs"],
parser: "@typescript-eslint/parser",
plugins: ["react-refresh"],
rules: {
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true },
],
},
};
6 changes: 6 additions & 0 deletions .firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
album_black_24dp.svg,1700358228282,c789efd62d50fb7bf13e79812454ffa23cce3435c62e74cb31ebec1e14556c99
manifest.json,1700358228282,2bd1ea2b2156fb733cde6e8fc12111f6bf656a970f1e3426b11d4bd7d14637cc
index.html,1700358228462,f278142cce87b5ec73b909cb24b2974982a32e8d2e38c9eeaa385072539cb35e
tracks_256.png,1700358228284,f5fba20395ba8ec83eb5708fb1bb8b10ecc148ea988f8430a407221ee0d47d64
tracks.png,1700358228284,52a471e1a7f003952d99b54b29ce3f9a738885b129d9612802ad1b47151adf18
assets/index-68d6b284.js,1700358228462,44ce594af1c59db00bc0ee3d16de67e7effc1611ddddbdf098f0f1ca107a0db5
1 change: 1 addition & 0 deletions .firebase/hosting.Zm9v.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
index.html,1696714955803,8bc1fd3c5b5949a6fa1ebbdd43b34875848d68755a5c2293c70877cc08fc9f66
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "obr-extensions"
}
}
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# obr-tracks

Synchronized music extension for Owlbear Rodeo
![logo](./public/tracks.png)
18 changes: 18 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"hosting": {
"site": "obr-tracks",
"public": "dist",
"headers": [
{
"source": "**",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "https://www.owlbear.rodeo"
}
]
}
],
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
}
}
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/tracks.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tracks</title>
</head>

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

0 comments on commit 31cc44b

Please sign in to comment.