Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jonjondev/liner-notes
- Owner: jonjondev
- Created: 2017-11-25T07:45:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-25T07:48:50.000Z (almost 7 years ago)
- Last Synced: 2023-08-16T10:05:37.123Z (about 1 year ago)
- Language: HTML
- Homepage:
- Size: 2.72 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```