Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #21 from FredrikAugust/patch-1
Browse files Browse the repository at this point in the history
Use code blocks in README
  • Loading branch information
KevinMidboe authored Aug 29, 2018
2 parents 6ddd0e4 + 5693c33 commit cddbff5
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,19 @@ Quick start

1. Add "redwine" to your INSTALLED_APPS setting like this::

INSTALLED_APPS = (
...
'redwine',
)
```python
INSTALLED_APPS = (
...
'redwine',
)
```

2. Include the redWine URLconf in your project urls.py like this::

url(r'^redwine/', include('redwine.urls')),
```python
url(r'^redwine/', include('redwine.urls')),
```

3. Run `python manage.py migrate` to create the redWine models.

4. Visit http://127.0.0.1:8000/redwine/ to do stuff.
4. Visit http://127.0.0.1:8000/redwine/ to do stuff.

0 comments on commit cddbff5

Please sign in to comment.