Compare commits

...

2 commits

84 changed files with 21 additions and 2 deletions

View file

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

0
backend/README.md Normal file
View file

3
backend/go.mod Normal file
View file

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

7
backend/main.go Normal file
View file

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

View file

View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

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