Django application, powers okthess.gr.
Install requirements:
pip3 install -r requirements.txt
Then, migrate your database:
python3 manage.py migrate
Finally, run the Django server:
python3 manage.py runserver
The Django project is okthess
. There is one Django app, main
, which includes
all business logic.
This project uses PostgreSQL.
Add new strings (with trans
and blocktrans
on templates).
Then run this to parse the new strings:
python3 manage.py makemessages -i venv -l el
Translate them in django.po
.
Once finished, run this to compile them into the binary file named django.mo
.
python3 manage.py compilemessages
This project is deployed to AWS Elastic Beanstalk using Terraform (v0.10.2).
The infrastructure resources are described at the infra
directory.
Those resource assume the default VPC exists (including subnets, route tables, ACLs, internet gateway, etc).
cd infra/
terraform init # initialize terraform project
terraform validate -var-file terraform.tfvars # validate tf files
terraform fmt # format tf files in the default, not very useful, way
# plan against production secret variables
terraform plan -var-file production.tfvars -state=terraform.tfstate -refresh=true -out=terraform.tfplan
# apply the infra now and make the current resources described in the tf files reality
terraform apply -var-file production.tfvars -backup=terraform.tfstate.backup -state=terraform.tfstate