joshlegs: which is so counterintuitive because it’s literally running in production right now.
joshlegs: yea, well hopefully once i get comfortable with django my open source contribs won’t be too far away!
joshlegs
SteenJobs: you'll get it!! and that's why this channel exists -- helping people with the framework
SteenJobs
joshlegs: amen. i mean the hardest part is to stop viewing everything through the lens of rails
joshlegs
yes i agree with you on that. it's a very very different framework
SteenJobs
joshlegs: i figured running makemigrations would create a migration to fix the disparity between models.py and my db, but apparently not.
joshlegs: it’s healthy at first to conceptualize certain things as being analogous to rails, but in the end i have to totally detach.
joshlegs
^ agreed
SteenJobs: howd you get the database data anyway? only through fixtures or did you import a database?
SteenJobs
joshlegs: like it saved me a ton of time to just realize virtualenv = RVM, compared to someone who’s never been introduced to the concept.
joshlegs
haha yep
jdeux joined the channel
SteenJobs
joshlegs: merely cloned the repo, then ran migrate, then ran loaddata
but loaddata through an error because there were attributes listed in the fixtures which correspond to models.py but not to the current state of the db.
joshlegs
ahh. so fixtures is out of date.
fission6 has quit
i'd mention that to someone and ask if theres's a better way to get the db populated with data
emma
joshlegs: heya!
joshlegs: you have really come a long way with python my friend!
joshlegs
emma: heya!! thanks i appreciate it!
emma: you learning django?
emma
potentially. It's hard to say right now. I have to balance my learning curves with my needs
joshlegs
makes sense. i'd be more than happy to help if i can when you need it
(if you need it)
SteenJobs
joshlegs: aright cool, i’ll look into other forms of seed data. in rails there’s a seed file that you use to literally seed your db.
fpghost84 joined the channel
joshlegs
SteenJobs: yeah, i think fixtures aims to scratch that itch, but it comes short a lot of times. i *think* the general recommendation is to use a datamigration
i've run into issues before where fixtures would be rerun each time you ran a migration if the data wasnt found -- and i needed some of that data gone. so, meh
heyts joined the channel
fpghost84
Hi, I'm getting a very weird "Bad request (400)" error on my productions server (apache/modwsgi), with either DEBUG=True/False, but not during runserver and local dev. In order to attempt to debug I'm trying to set up logging to apache log
the logging, seems to be working, in the sense that I can logger.error('...) somewhere in the src and it shows in the apache logs
pwnz0r joined the channel
but I'm still no nearer to finding a trace on the 400 :(
and have no clear idea of how to even move fwd
SteenJobs
joshlegs: would there be any rationale for django telling me there are no changes detected, yet models.py doesn’t match up with the columns in my db? is there a command for reconciling any differences?
heyts
Your apache may be misconfigured
joshlegs
SteenJobs: yeah i think so. this migration system is all new though and im not TERRIBLy familiar with it. trying to remember how its done now
SteenJobs
#coderinsults
^heyts
joshlegs: well remember harder!!! jokes.
joshlegs
lol
pyface joined the channel
il joined the channel
to be honest, id start from scratch with the database and migrate it from scratch to see if that works
and then look at loading those fixtures and seing what happens then
SteenJobs
joshlegs: already tried :D
joshlegs
:D
SteenJobs
joshlegs: that’s my face i make when trying to maintain composure and not punching the dude next to me in the face. i’m not frustrated, it’s gonna be ok.
joshlegs
SteenJobs: other than that i realy dont know without looking at it myself. im not always the best at conceptualizing the problem described
and lol. i totally get that
pwnz0r has quit
iirc the new migration system dyamically determines what your database should look like based on the current migrations in your application, and then compares that against your database
il is now known as Audioburn_
so if you loaded data in from fixtures and it created tables that arent in the migrations, that could be a source, i'd think. but again, i'm really not sure
ok, /me needs to get back to his own programming dilemmas
joshlegs has quit
SteenJobs
nope. loading fixtures can’t create tables, would throw an error if the attributes are missing.
crakrjak joined the channel
RicoAlpha joined the channel
thrillgore joined the channel
joshlegs joined the channel
Goopyo has quit
SteenJobs has quit
thrillgore joined the channel
Nizumzen joined the channel
shadowbeast joined the channel
aavrug joined the channel
djapo joined the channel
django347
joshlegs---I finally switched over to mysql (random things took forever). It seems to work now!
joshlegs
django347: great!!
heatmeiser joined the channel
django347
Thanks again for all the help
joshlegs
django347: i like mysql a lot. but im fairly sure that's just a bug with sqlite that hasnt been fixed yet
no problem!
ciderkk has quit
Nux17 has quit
shawnadelic has quit
wowiezowie has quit
il joined the channel
Satchitananda joined the channel
SteenJobs joined the channel
django347
Eh, well, somehow a field that I deleted lingered on in the new database, which gives me an error when I try to create the object that the [now deleted] field doesn't have a default/can't be null. I'm just going to drop my tables and delete all migration files to start fresh
Audioburn has quit
emma
joshlegs: im thinking of possibly making a django powered cms
joshlegs: have you done many things with django yet?
SteenJobs has quit
Audioburn_ is now known as Audioburn
joshlegs
emma: yeah lots! a few silly game apps, and that's what i work in for my job. you ight look at django-cms -- i think it makes making cms'es a lot easier
emma
joshlegs: oh cool thanks for the lead on that.
joshlegs
emma: yw! i think it's a pretty popular package/module
emma
joshlegs: where im going to run into trouble is with the design/beauty aspect of it
joshlegs
django347: that sounds like a good idea
haha yeah i suck at design stuff too. :'(
emma
joshlegs: is it tricky to theme a django site?
joshlegs
i'm like "just throw it in a box and that's good"
emma: like, what do you mean theme it? like find consistent styles etc?
emma
Like make the whole site look unified and professional with some attractiveness.
so it doesn't look like something from 1996
joshlegs
ahh got ya
um, i generally suck at most things front end, but i think yeah it can be easy enough to theme the site.
bootstrap is really popular, and probably helps with that a lot
mattmcc
emma: There's nothing Django-specific about doing a theme, other than the template structure.
It's all still just HTML & CSS.
SteenJobs joined the channel
joshlegs
mattmcc: o/ good to see you round
coderzm joined the channel
AleksTK has quit
pilva joined the channel
RicoAlpha joined the channel
josuebrunel joined the channel
pilva has quit
lumgwada joined the channel
abara has quit
SteenJobs has quit
koobs joined the channel
rtpg has quit
fpghost84
which view gets called when viewing the admin change form for a given model in django?