Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xurape/silken-valley
Metroidvania-like troll
https://github.com/xurape/silken-valley
Last synced: 17 days ago
JSON representation
Metroidvania-like troll
- Host: GitHub
- URL: https://github.com/xurape/silken-valley
- Owner: Xurape
- Created: 2024-06-20T23:09:35.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-20T23:11:43.000Z (7 months ago)
- Last Synced: 2024-11-07T12:08:03.840Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 86.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Silken Valley
[Link do itch.io](https://jpedroferreira.itch.io/silken-valley)# Como correr
Para correr o jogo localmente, devemos seguir os seguintes passos:1. Dar clone ao repositório
```bash
git clone https://github.com/xurape/TP2-29446-29142.git silken-valley
```2. Entrar na pasta do jogo
```bash
cd silken-valley/src
```3. Instalar as dependências
```bash
# Podemos usar qualquer um dos seguintes:
npm i
# yarn i
# bun i
```4. Correr o jogo
```bash
# Segundo o que usamos no passo anterior, podemos usar qualquer um dos seguintes:
npx vite # para npm
# yarn vite (para yarn)
# bunx vite (para bun)
```5. Abrir o jogo
```
O jogo ficará disponível em http://localhost:5173
```