Compare commits
No commits in common. "f9e9ad12978360bc78128dea01d8b1fefc1ef093" and "af2af11626f6c80c47a9d858c14c1b3f651556d8" have entirely different histories.
f9e9ad1297
...
af2af11626
84 changed files with 2 additions and 21 deletions
0
frontend/.gitignore → .gitignore
vendored
0
frontend/.gitignore → .gitignore
vendored
|
@ -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
|
||||
```
|
|
@ -1,3 +0,0 @@
|
|||
module backend
|
||||
|
||||
go 1.24.2
|
|
@ -1,7 +0,0 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello, World!")
|
||||
}
|
0
frontend/package-lock.json → package-lock.json
generated
0
frontend/package-lock.json → package-lock.json
generated
0
frontend/src/app.d.ts → src/app.d.ts
vendored
0
frontend/src/app.d.ts → src/app.d.ts
vendored
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
@ -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()]
|
||||
});
|
Loading…
Add table
Reference in a new issue