Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,21 @@ This repository consists of a **browser version** of the original game developed
All graphic resources of the project have a CC BY-NC-SA (Creative Commons Attribution Non-Commercial Share Alike) license.
The graphic resources have been designed by [Ana Vallecillos Ruiz](https://nashek.artstation.com/) and [Lola González Gutiérrez](https://www.redbubble.com/es/people/lolagonzalez?asc=u).

## Server Setup

#### 1. Install npm libs
```sh
npm install
```
#### 2. Build js using rollup (output in dist folder)
```sh
npm run build
```
#### 3. Launch app serving root as static folder, e.g.
```sh
python3 -m http.server 8000
```

<hr>

<div align="center">
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,21 @@ Este repositorio se trata de una **versión web** del videojuego original desarr
## Recursos
Todos los recursos gráficos del proyecto poseen una licencia CC BY-NC-SA (Creative Commons Attribution Non-Commercial Share Alike). Los recusos gráficos han sido diseñados por [Ana Vallecillos Ruiz](https://nashek.artstation.com/) (Directora de Arte) y [Lola González Gutiérrez](https://www.redbubble.com/es/people/lolagonzalez/shop?asc=u).

## Server Setup

#### 1. Install npm libs
```sh
npm install
```
#### 2. Build js using rollup (output dist folder)
```sh
npm run build
```
#### 3. Launch app serving root as static folder, e.g.
```sh
python3 -m http.server 8000
```

<hr>

<div align="center">
Expand Down
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@

<!-- Contenedor del juego -->
<div id="game">
<script src="./src/game.js" type="module"></script>
<script src="dist/bundle.js"></script>
<!-- <script src="./src/game.js" type="module"></script> -->
</div>


Expand Down
Loading