https://github.com/jeffreykirchner/trade_steal
Exchange and Specialization as a Discovery Process. Sean Crockett, Vernon L. Smith & Bart J. Wilson.
https://github.com/jeffreykirchner/trade_steal
bootstrap django experimental-economics pixijs vuejs
Last synced: 2 months ago
JSON representation
Exchange and Specialization as a Discovery Process. Sean Crockett, Vernon L. Smith & Bart J. Wilson.
- Host: GitHub
- URL: https://github.com/jeffreykirchner/trade_steal
- Owner: jeffreykirchner
- License: gpl-3.0
- Created: 2021-10-15T17:33:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2026-01-28T22:41:48.000Z (5 months ago)
- Last Synced: 2026-01-29T13:47:20.151Z (5 months ago)
- Topics: bootstrap, django, experimental-economics, pixijs, vuejs
- Language: JavaScript
- Homepage: https://dx.doi.org/10.2139/ssrn.930078
- Size: 22.3 MB
- Stars: 0
- Watchers: 1
- Forks: 3
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Specialization_and_Trade
Web version of the Exchange and Specialization experiment. https://papers.ssrn.com/sol3/papers.cfm?abstract_id=930078
Setup Guide:
https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-18-04
local_settings.py:
Copy local_settings_sample.py to local_settings.py
local_settings.py is used for local development and will be excluded from the repo.
Update the DATABASES section of this file with the info from your locally run instance of Postgresql.
Update the CHANNEL_LAYERS layers section of this file with the info from your locally run instance of Redis.
Update Python installers:
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.11
sudo apt-get install python3.11-distutils
Activate virtual environment and install requirments:
virtualenv --python=python3.11 _trade_steal_env
source _trade_steal_env/bin/activate
pip install -U -r requirements.txt
Setup Environment:
sh setup.sh
Run Environment:
python manage.py runserver