Project Setup
Launch a Prompt Wars clone, edit the Rust contracts and edit the UI to create your own games.
File Structure
├── app
│ ├── plop-templates
│ │ ├── component
│ │ ├── hook
│ │ └── page
│ ├── public
│ │ ├── brand
│ │ ├── icons
│ │ ├── locales
│ │ ├── market
│ │ ├── prompt-wars
│ │ └── shared
│ └── src
│ ├── app
│ ├── context
│ ├── hooks
│ ├── layouts
│ ├── pages
│ ├── providers
│ ├── theme
│ ├── types
│ └── ui
└── contracts
├── market-factory
│ ├── res
│ └── src
├── prompt-wars
│ ├── build
│ └── src
The app/
directory is a NextJS application before the introduction of app router. The contracts
directory has the game contract and the game factory contract.
Last updated