update readme
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
module github.com/catsave/server
|
||||
module github.com/nekoflow/server
|
||||
|
||||
go 1.21
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ func main() {
|
||||
port = "8080"
|
||||
}
|
||||
|
||||
log.Printf("🚀 CatSave server starting on http://localhost:%s\n", port)
|
||||
log.Printf("🚀 NekoFlow server starting on http://localhost:%s\n", port)
|
||||
log.Printf("📱 Web UI: http://localhost:%s\n", port)
|
||||
log.Printf("🔌 API: http://localhost:%s/api/health\n", port)
|
||||
|
||||
@@ -57,7 +57,7 @@ func healthHandler(w http.ResponseWriter, r *http.Request) {
|
||||
|
||||
response := HealthResponse{
|
||||
Status: "ok",
|
||||
Message: "Go backend is running! 🐹",
|
||||
Message: "NekoFlow Go backend is running! 🐹",
|
||||
Timestamp: time.Now().Format(time.RFC3339),
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@catsave/web",
|
||||
"name": "@nekoflow/web",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
||||
@@ -2,7 +2,7 @@ import type { Metadata } from 'next'
|
||||
import './globals.css'
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'CatSave',
|
||||
title: 'NekoFlow',
|
||||
description: 'Go + Next.js Single Binary Application',
|
||||
}
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ export default function Home() {
|
||||
<span className="text-5xl">🐱</span>
|
||||
</div>
|
||||
<h1 className="text-5xl font-bold text-gray-900 mb-4">
|
||||
CatSave
|
||||
NekoFlow
|
||||
</h1>
|
||||
<p className="text-xl text-gray-600 mb-8">
|
||||
Go + Next.js Single Binary
|
||||
|
||||
Reference in New Issue
Block a user