Refactoring: Moving frontend to its separated folder, and created basic backend in golang.
This commit is contained in:
parent
af2af11626
commit
293752db2c
85 changed files with 16 additions and 1 deletions
|
@ -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
0
backend/README.md
Normal file
3
backend/go.mod
Normal file
3
backend/go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module backend
|
||||
|
||||
go 1.24.2
|
7
backend/main.go
Normal file
7
backend/main.go
Normal file
|
@ -0,0 +1,7 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello, World!")
|
||||
}
|
0
.gitattributes → frontend/.gitattributes
vendored
0
.gitattributes → frontend/.gitattributes
vendored
0
.gitignore → frontend/.gitignore
vendored
0
.gitignore → frontend/.gitignore
vendored
0
package-lock.json → frontend/package-lock.json
generated
0
package-lock.json → frontend/package-lock.json
generated
0
src/app.d.ts → frontend/src/app.d.ts
vendored
0
src/app.d.ts → frontend/src/app.d.ts
vendored
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Loading…
Add table
Reference in a new issue