Compare commits

..

No commits in common. "f9e9ad12978360bc78128dea01d8b1fefc1ef093" and "af2af11626f6c80c47a9d858c14c1b3f651556d8" have entirely different histories.

84 changed files with 2 additions and 21 deletions

View file

View file

@ -4,15 +4,10 @@ Root of the etheryo "eco-system".
Install the following:
```bash
pacman -S npm go
pacman -S npm
```
And run the following:
```bash
cd frontend
npm run dev
```
```bash
cd backend
go run main.go
```

View file

View file

@ -1,3 +0,0 @@
module backend
go 1.24.2

View file

@ -1,7 +0,0 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}

View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -2,9 +2,5 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()],
server: {
host: '0.0.0.0',
port: 5125,
},
plugins: [sveltekit()]
});