8000 GitHub - rayfiyo/zousui: 文明進化シミュレーター / Civilization Evolution Simulator
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ zousui Public

文明進化シミュレーター / Civilization Evolution Simulator

License

Notifications You must be signed in to change notification settings

rayfiyo/zousui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zousui

  • 文明進化シミュレーター
  • Civilization Evolution Simulator

.env

backend/.env

GEMINI_API_KEY=
OPENAI_API_KEY=

tree

backend

tree backend/
backend/
├── cmd
│   └── main.go
├── domain
│   ├── entity
│   │   ├── agent.go
│   │   └── community.go
│   └── repository
│       └── simulate.go
├── go.mod
├── go.sum
├── infrastructure
│   └── repository
│       ├── memory_agent_repo.go
│       └── memory_community_repo.go
├── interface
│   ├── controller
│   │   ├── community_controller.go
│   │   ├── diplomacy_controller.go
│   │   ├── image_controller.go
│   │   └── simulate_controller.go
│   ├── gateway
│   │   ├── gemini_gateway.go
│   │   └── moc_gateway.go
│   └── router
│       └── router.go
├── usecase
│   ├── community.go
│   ├── diplomacy.go
│   └── simulate.go
└── utils
    ├── config
    │   └── env.go
    └── consts
        └── consts.go

frontend

tree -I "node_modules" frontend/
frontend/
├── app
│   ├── community
│   │   ├── [id]
│   │   │   └── page.tsx
│   │   └── new
│   │       └── page.tsx
│   ├── diplomacy
│   │   └── page.tsx
│   ├── layout.tsx
│   ├── NavBar.tsx
│   └── page.tsx
├── eslint.config.mjs
├── next.config.ts
├── next-env.d.ts
├── package.json
├── package-lock.json
├── public
│   ├── file.svg
│   ├── globe.svg
│   ├── next.svg
│   ├── vercel.svg
│   └── window.svg
├── README.md
├── src
│   └── app
│       ├── favicon.ico
│       ├── globals.css
│       ├── layout.tsx
│       ├── page.module.css
│       └── page.tsx
└── tsconfig.json

note

  • クリーンアーキテクチャ
  • MVS

About

文明進化シミュレーター / Civilization Evolution Simulator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0