fix(nebula): use bunx for tailwindcss build

This commit is contained in:
Prad Nukala
2024-09-25 22:47:00 -04:00
parent ad2902b0bb
commit 3638acd216
15 changed files with 95 additions and 312 deletions
+5 -7
View File
@@ -1,8 +1,6 @@
package proxy
import (
"log"
"github.com/spf13/cobra"
)
@@ -12,11 +10,11 @@ func NewProxyCmd() *cobra.Command {
Short: "Starts the DWN proxy server for the local IPFS node",
RunE: func(cmd *cobra.Command, args []string) error {
// Load config
c, err := LoadConfig(".")
if err != nil {
return err
}
log.Printf("Config: %+v", c)
// c, err := LoadConfig(".")
// if err != nil {
// return err
// }
// log.Printf("Config: %+v", c)
startServer()
return nil
},