Some things I want to accomplish this month on #WriteFreely:
- User invite system
- Automated database migrations
- Hashtag fixes
- User moderation
@writeas_dev by automated I assume one that would run on startup? I’ve wrote a simple one for a few of my golang projects. Basically folder of migrations and they register with the migration system. Stores a record and compares migration version with available ones before performing.
@geekgonecrazy Yeah, I'm looking to use this library for that same sort of thing: https://github.com/golang-migrate/migrate
It probably wouldn't happen automatically on startup, but there'd be an admin command that applies any necessary migrations, instead of making people copy and paste SQL queries, like they've had to with past versions.
@writeas_dev ran across that package as well. I ended up having to write my own because of the lacking mongo support. Of course not near as sophisticated.
Looking forward to checking it out. :)
I think I'll do the v0.7 release this coming Monday, too.