Add .gitignore and remove unnecessary files
This commit is contained in:
+38
@@ -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
|
||||||
Generated
-5
@@ -1,5 +0,0 @@
|
|||||||
# Default ignored files
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
# Editor-based HTTP Client requests
|
|
||||||
/httpRequests/
|
|
||||||
Generated
-12
@@ -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
@@ -1,6 +0,0 @@
|
|||||||
<component name="InspectionProjectProfileManager">
|
|
||||||
<settings>
|
|
||||||
<option name="USE_PROJECT_PROFILE" value="false" />
|
|
||||||
<version value="1.0" />
|
|
||||||
</settings>
|
|
||||||
</component>
|
|
||||||
Generated
-8
@@ -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>
|
|
||||||
Vendored
BIN
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.
Vendored
BIN
Binary file not shown.
Binary file not shown.
Vendored
-3
@@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"recommendations": ["Vue.volar"]
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
kasbergen:$2y$05$BIpUTNbICljGVS.UZfWFHe03n/t2YkHoFb6ON06xT5H68sxgltOr6
|
|
||||||
@@ -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.
|
|
||||||
@@ -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)
|
|
||||||
@@ -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())
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
class MockNavidrome:
|
|
||||||
pass
|
|
||||||
# Just to check if there is a way I can test Navidrome API locally
|
|
||||||
Reference in New Issue
Block a user