Prepare the Database
The details of these steps are way beyond the scope of this post. If you need help setting up your database, contact your system administrator and/or try Googling it yourself. Good luck!
PostgreSQL
- Create a PostgreSQL database that will be used by both ContentMirror and by Django. Something like this:
createdb mydatabase
- Setup user accounts and permissions so everything plays nicely.
You should be able to run psql mydatabase at the command prompt.
MySQL
- Create a MySQL database that will be used by both ContentMirror and by Django. Something like this:
$ mysql mysql> CREATE DATABASE mydatabase;
- Setup user accounts and permissions so everything plays nicely.
You should be able to run mysql mydatabase at the command prompt.
SQLite
I haven't tried using SQLite, but I understand that SQLAlchemy (which ContentMirror uses for the database layer) now supports SQLite. I'd be interested in your comments on this.
