NEWD website repository. This website is hosted on PythonAnywhere at http://noeasywaydown.pythonanywhere.com/
NEWD was designed using the Python3 tool Flask: https://flask.palletsprojects.com/en/1.1.x/
$git clone https://github.com/lgago/NoEasyWayDown.git
$cd NEWD
$ python3 -m venv venv
$ . venv/bin/activate
$ pip install flask
OR if you have a setup.py file:
$ pip install -e .
$ export FLASK_APP=NEWD
$ export FLASK_ENV=development
$ flask init-db
$ flask run
$ pip install '.[test]'
$ pytest
$ coverage run -m pytest
$ coverage report
$ coverage html # open htmlcov/index.html in a browser
-
A detail view to show a single post. Click a post’s title to go to its page. [DONE-Edit1]
-
Make NoEasyWayDown at the top of each page clickable, and have it return you to the home screen. [Done-Edit2]
-
Add error logging for various scenarios. [Done-Edit2]
-
Create two user types. Admin user (myself) and read/comment only user (anyone that isn't me that logs into my blog). [Edit3]
-
Like / unlike a post.
-
Comments.
-
Tags. Clicking a tag shows all the posts with that tag.
-
A search box that filters the index page by name.
-
Paged display. Only show 5 posts per page.
-
Upload an image to go along with a post.
-
Format posts using Markdown.
-
An RSS feed of new posts.