Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jonjondev/liner-notes

A simple, Django-based music review site
https://github.com/jonjondev/liner-notes

Last synced: 7 days ago
JSON representation

A simple, Django-based music review site

Awesome Lists containing this project

README

        

# The Liner Notes

The Liner Notes is a minimalistic album review website. It displays the latest review on the front of the site and allows readers to go back and fourth linearly or view an index of reviews.

## Setup

To set up the local instance of this site, simply run:

``` python
python manage.py migrate
```
This will run the required migrations. Next you must set up the first admin account:

``` python
python manage.py createsuperuser
```
Follow the prompts and an admin account will be created. Finally run the server at `http://localhost:8000` using:

```python
python manage.py runserver
```