https://github.com/oldcorvus/newsblog
simple django blog
https://github.com/oldcorvus/newsblog
django
Last synced: 4 months ago
JSON representation
simple django blog
- Host: GitHub
- URL: https://github.com/oldcorvus/newsblog
- Owner: oldcorvus
- Created: 2022-01-21T09:31:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-16T16:46:11.000Z (over 4 years ago)
- Last Synced: 2025-05-05T17:33:14.014Z (about 1 year ago)
- Topics: django
- Language: JavaScript
- Homepage:
- Size: 3.35 MB
- Stars: 14
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/`.