passiomatic / coldsweat

Web RSS aggregator and reader compatible with the Fever API
MIT License
145 stars 21 forks source link

Add PostgreSQL support #37

Closed passiomatic closed 10 years ago

passiomatic commented 10 years ago

Peewee has excellent support for PostgreSQL so it makes sense to add it to Coldsweat too.

tewe commented 10 years ago

Works for me :)

  1. open terminal as user who installed postgres
  2. launch psql template1 (this is an included dummy database)
  3. enter the following (has to be single quotes)

    CREATE USER your_db_user WITH PASSWORD 'your_users_pass'; CREATE DATABASE your_db_name; GRANT ALL PRIVILEGES ON DATABASE your_db_name to your_db_user;

  4. exit with \q
passiomatic commented 10 years ago

Thank you for your help. If you find any problem please reopen this issue.