deploy <- last working version
- Select your favorite fraction;
- Make buildings;
- Store resources.
- v.0.5.1
Change buildings cost; - v.0.5.0
Create page for trading resources;
Trading available after building marketplace (by click on building). - v.0.4.0
Now increase gold incoming amount depend on administration building level;
Now increase resources storage amount depend on storager level. - v.0.3.0
Add limit to resources;
Add about page;
Add page of resources incoming; - v.0.2.0
Add Inferno fraction; - v.0.1.0
Create ability to make buildings;
- Add ability to create Army;
- Add Heroes.
- Clone repository
git clone git@github.com:KuzenkovAG/hmom3.git
- Install environment
cd hmom3/
py -3.9 -m venv venv
- Activate environment
source venv/Scripts/activate
- Install requirements
pip install -r requirements.txt
- Make migrate
python hmom3/manage.py migrate
- Fill DB
python hmom3/manage.py import_csv
- Create superuser <- for creation superuser need to use ONLY this command
python hmom3/manage.py create-superuser \
--username=admin \
--email=admin@mail.ru \
--password=admin
- Run server Before run make sure settings.DEBAG = True
python hmom3/manage.py runserver