Skip to content

Commit

Permalink
Create code.djangoproject Postgres user with createdb permissions, too.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed Jan 22, 2015
1 parent 8c7d245 commit 41c4317
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ install:
before_script:
- createuser -U postgres -d djangoproject
- createdb -U postgres -O djangoproject djangoproject
- createuser -U postgres code.djangoproject
- createuser -U postgres -d code.djangoproject
- createdb -U postgres -O code.djangoproject code.djangoproject
- psql -U postgres -d code.djangoproject < tracdb/trac.sql
script:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ To run locally, do the usual:

createuser -d djangoproject
createdb -O djangoproject djangoproject
createuser code.djangoproject
createuser -d code.djangoproject
createdb -O code.djangoproject code.djangoproject

#. Create tables::
Expand Down

0 comments on commit 41c4317

Please sign in to comment.