Refactoring: Moving frontend to its separated folder, and created basic backend in golang.

This commit is contained in:
Yohan Boujon 2025-04-29 23:18:50 +02:00
parent af2af11626
commit 293752db2c
85 changed files with 16 additions and 1 deletions

View file

@ -4,10 +4,15 @@ Root of the etheryo "eco-system".
Install the following:
```bash
pacman -S npm
pacman -S npm go
```
And run the following:
```bash
cd frontend
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