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

https://github.com/oldcorvus/newsblog

simple django blog
https://github.com/oldcorvus/newsblog

django

Last synced: 4 months ago
JSON representation

simple django blog

Awesome Lists containing this project

README

          

# news-blog
simple django blog

## Setup

The first thing to do is to clone the repository:

```sh
$ git clone https://github.com/oldcorvus/news-blog.git
```

Create a virtual environment to install dependencies in and activate it:

```sh
$ virtualenv env
$ source env/bin/activate
```

Then install the dependencies:

```sh
(env)$ pip install -r requirements.txt
```

Once `pip` has finished downloading the dependencies:
```sh
(env)$ cd app
(env)$ python manage.py runserver

```
And navigate to `http://127.0.0.1:8000/`.