Capuchin
Capuchin

Reputation: 3775

Running `manage.py` for `makemessages` from another directory

Is there a way to use manage.py from another directory to create makemessages for an installed_app?

├── common
│   ├── common
│   │   ├── tracking
│   │   │   ├── locale
├── car
│   ├── interfaces
│   │   ├── control
│   │   │   ├── manage.py

Upvotes: 0

Views: 446

Answers (1)

Łukasz Staniszewski
Łukasz Staniszewski

Reputation: 668

You can access it from directory bellow like this:

python ../manage.py makemessages

if it is two directories bellow:

python ../../manage.py makemessages

Upvotes: 1

Related Questions