Add .gitignore and remove unnecessary files

This commit is contained in:
Collin Kasbergen
2026-07-22 13:30:47 +02:00
parent badafc91e3
commit c2697af77b
22 changed files with 38 additions and 67 deletions
Vendored
BIN
View File
Binary file not shown.
+38
View File
@@ -0,0 +1,38 @@
# IDEs and Editors
.idea/
.vscode/
*.swp
*.swo
# MacOS
.DS_Store
# Python
__pycache__/
*.py[cod]
*$py.class
.env
venv/
/opt/venv/
pip-log.txt
pip-delete-this-directory.txt
# Node / Frontend
node_modules/
dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Database & Data
/data/
/app/settings.db
/app/*.db
# Temporary / Scratch Files
output.txt
test_liq.liq
test_liq.py
test_navidrome_api.py
htpasswd
*.log
-5
View File
@@ -1,5 +0,0 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
-12
View File
@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="PyDocumentationSettings">
<option name="format" value="PLAIN" />
<option name="myDocStringFormat" value="Plain" />
</component>
</module>
-6
View File
@@ -1,6 +0,0 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>
-8
View File
@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/coliefm-v3.iml" filepath="$PROJECT_DIR$/.idea/coliefm-v3.iml" />
</modules>
</component>
</project>
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
View File
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
-3
View File
@@ -1,3 +0,0 @@
{
"recommendations": ["Vue.volar"]
}
-1
View File
@@ -1 +0,0 @@
kasbergen:$2y$05$BIpUTNbICljGVS.UZfWFHe03n/t2YkHoFb6ON06xT5H68sxgltOr6
-5
View File
@@ -1,5 +0,0 @@
spawn telnet 127.0.0.1 1234
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Connection closed by foreign host.
-15
View File
@@ -1,15 +0,0 @@
set("server.telnet", true)
set("server.telnet.bind_addr", "0.0.0.0")
set("server.telnet.port", 1234)
def get_next() =
request.create("annotate:duration=5.0:silence")
end
radio = request.dynamic(id="navifm_queue", get_next)
# Try registering a telnet command to skip
server.register("navifm_queue.skip", fun(_) -> begin source.skip(radio); "Done" end)
radio = mksafe(radio)
output.dummy(radio)
-9
View File
@@ -1,9 +0,0 @@
import socket
with socket.create_connection(("127.0.0.1", 1234), timeout=1) as sock:
sock.sendall(b"help\r\nquit\r\n")
response = b""
while True:
chunk = sock.recv(4096)
if not chunk: break
response += chunk
print(response.decode())
-3
View File
@@ -1,3 +0,0 @@
class MockNavidrome:
pass
# Just to check if there is a way I can test Navidrome API locally