feat: ✨ plays radio stream from url
feat: ✨ api structure
This commit is contained in:
parent
c908fdc097
commit
8f2b6f1e3f
17 changed files with 3534 additions and 0 deletions
74
front/Dioxus.toml
Normal file
74
front/Dioxus.toml
Normal file
|
@ -0,0 +1,74 @@
|
|||
[application]
|
||||
|
||||
# dioxus project name
|
||||
name = "Radioxide"
|
||||
|
||||
# default platfrom
|
||||
# you can also use `dx serve/build --platform XXX` to use other platform
|
||||
# value: web | desktop
|
||||
default_platform = "web"
|
||||
|
||||
# Web `build` & `serve` dist path
|
||||
out_dir = "dist"
|
||||
|
||||
# resource (static) file folder
|
||||
asset_dir = "public"
|
||||
|
||||
[web.app]
|
||||
|
||||
# HTML title tag content
|
||||
title = "Radioxide | Fully Oxidised Radio"
|
||||
|
||||
[web.watcher]
|
||||
|
||||
index_on_404 = true
|
||||
|
||||
watch_path = ["src", "examples"]
|
||||
|
||||
# include `assets` in web platform
|
||||
[web.resource]
|
||||
|
||||
# CSS style file
|
||||
style = []
|
||||
|
||||
# Javascript code file
|
||||
script = []
|
||||
|
||||
[web.resource.dev]
|
||||
|
||||
# Javascript code file
|
||||
# serve: [dev-server] only
|
||||
script = []
|
||||
|
||||
[application.plugins]
|
||||
|
||||
available = true
|
||||
|
||||
required = []
|
||||
|
||||
[bundler]
|
||||
# Bundle identifier
|
||||
identifier = "io.github.Radioxide"
|
||||
|
||||
# Bundle publisher
|
||||
publisher = "Radioxide"
|
||||
|
||||
# Bundle icon
|
||||
icon = ["icons/icon.png"]
|
||||
|
||||
# Bundle resources
|
||||
resources = ["public/*"]
|
||||
|
||||
# Bundle copyright
|
||||
copyright = ""
|
||||
|
||||
# Bundle category
|
||||
category = "Utility"
|
||||
|
||||
# Bundle short description
|
||||
short_description = "Online Radio Streaming."
|
||||
|
||||
# Bundle long description
|
||||
long_description = """
|
||||
Online Radio Streaming Platform.
|
||||
"""
|
Loading…
Add table
Add a link
Reference in a new issue