One Hour One Life Crafting Reference
View here: https://onetech.info
This site is built using the game data directly from the game data repository. It shows the relationships between items, and lets you explore how things are crafted.
Unlike the wiki, which contains "wisdom" about the game, this site contains only "knowledge". This is a reference. For a better guide, go to the game wiki.
The project is split into two parts:
# install dependencies
npm install
# serve with hot reload at localhost:8080
# to simulate edge subdomain visit edge.lvh.me:8080
npm run dev
# build for production with minification
npm run build
For detailed explanation on how things work, consult the docs for vue-loader.
The script is under the folder process
. It will pull the latest data from the game data repository (if provided download
as a command line argument), and then generate JSON files for the objects. It will also composite the sprites and create PNGs for each object in the game.
To get it running, you will need to install ImageMagick, Canvas dependencies, and SoX and then:
cd process
# install dependencies
npm install
cd ..
# run script including downloading latest data and processing sprites
node process download
# if you want to re-process the sprites without downloading data
node process sprites
# if you want to re-process the sounds without downloading data
node process sounds
# or process without generating sprites
node process
If you have a modded version of OneLifeData7
, consider forking this repository and setting these environment variables before processing:
export ONETECH_MOD_NAME="My Awesome Mod"
export ONETECH_MOD_URL="https://my-awesome-mod.com"
export ONETECH_PROCESS_GIT_PATH="/path/to/my/awesome-mod-data"
# or
export ONETECH_PROCESS_GIT_URL="https://github.com/my/awesome-mod-data"
After you have run the process and build scripts, push the changes up to your own fork. If you want to use GitHub Pages, you will need to remove static
from .gitignore
, and then you can go to the GitHub project settings and setup GitHub Pages to use the master branch. This will make the site publicly accessible.