Helper website for the text-based online RPG Torn City https://www.torn.com/ The website is hosted here: https://yata.yt/
git clone https://github.com/Kivou-2000607/yata.git
cd yata
pip install -U pip
pip install -r requirements.txt
Create a local .env file
###### REQUIRED ######
DEBUG=True
SECRET_KEY="xxx"
ALLOWED_HOSTS="*"
LOG_KEY="xxx"
ADMIN_URL_PREFIX="prefix/" # Enter a prefix for your admin URL with a trailing slash.
# Database selection
DATABASE=sqlite
#DATABASE=postgresql
#PG_NAME=yata
#PG_USER=username
#PG_PASSWORD=password
#PG_HOST=localhost
#PG_PORT=5432
#PG_CONN_MAX_AGE=600
###### OPTIONAL ######
# For most leaving this as default should be fine, but if you have any issues with -4 cache responses you may wish to increase this gradually
CACHE_RESPONSE=10
# The amount of chain report crontabs to run when running crons manually via python ./cron/dev_cron.py
CHAIN_REPORT = 1
# The amount of attack report crontabs to run when running crons manually via python ./cron/dev_cron.py
ATTACK_REPORT = 1
# The amount of revive report crontabs to run when running crons manually via python ./cron/dev_cron.py
REVIVE_REPORT = 1
# REDIS
#USE_REDIS=True
#REDIS_HOST="redis://178.62.1.116:6379/1"
#REDIS_PASSWORD="xxx"
# SENTRY
# Sentry for error capture
ENABLE_SENTRY=False
#SENTRY_DSN=YOURDSN
#SENTRY_ENVIRONMENT=dev
#SENTRY_SAMPLE_RATE=1.0
Then run setup.py to initalise everything
python setup.py
To emulate cron activity ./cron/dev_cron.py
can be run as a seperate process. Cron jobs designed to run on a per minute basis will be run as such. Cron's with a longer delay will run on a 30 minute schedule.
python ./cron/dev_cron.py
See an example of a production crontab
cat ./cron/crontab.txt
To launch the application simple start the Django Application
python manage.py runserver
The admin interface can be accessed via
http://127.0.0.1:8000/admin
Username: admin
Password: adminpass
By default the most commonly traded items are set to appear in https://yata.yt/bazaar/default/. This list can be adjusted.
1. Logon To the Admin Section
2. Go to the Items table
3. Select the item you wish to add
4. Enable the flag "OnMarket"
5. Save