I would like my public blog to only get my public posts. Currently everything get's shipped over as that is easier but that seems a bit silly.
There are a couple solutions here:
Deletes records that are private when they get to the server
Instead of sending my blog file, I can send a filtered file
The first option is probably easier as it's going to be just doing a call when I ssh into the server. However this seems hacky.The second option requires some reworking that I don't want to do, currently I rsync my scarletdme to the one on the public server. I would need to change my deploy script to skip one more file and then I would also need to change my blog site to use the new file. I don't want to change the name of my source file.
Either solution is going to feel safer. The ultimate goal would be to actually get rid of the private notes from the public site and remove the login logic. This however will need to wait until I get the NV application actually working.