First time here? Check out the FAQ!
1

export askbot live settings in order to be used in another environment

I was wondering if it is possible to export my settings/configurations from django admin console in order to use them (import) in another askbot environment.

By this way, I could save time since I will not need to put them again manually. Do you know if something like that is supported?

alexandros.z's avatar
596
alexandros.z
asked 2012-05-30 10:42:17 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

3

It's not currently supported just like this but you can do the following:

python manage.py dumpdata livesettings > livesettings.json

and on your target machine

python manage.py loaddata livesettings.json

For more information about Django's fixtures here

Fitoria's avatar
1.1k
Fitoria
answered 2012-05-30 12:31:08 -0500
edit flag offensive 0 remove flag delete link

Comments

That's great, thanx! I will try it and I will let you know

alexandros.z's avatar alexandros.z (2012-05-30 16:16:30 -0500) edit
add a comment see more comments