Skip to content
/ fastpost Public

Blog engine in Django Framework, just for fun

Notifications You must be signed in to change notification settings

kosc/fastpost

Repository files navigation

fastpost

Blog engine in Django Framework, just for fun. You can see the demo site on http://fastpost.hotkosc.ru

Codacy Badge

Installation instructions:

Install python3.5 or later and pip. Clone the repo and install all necessary python modules:

git clone https://github.com/kosc/fastpost.git
cd fastpost
pip install --user -r requirements/dev.txt # if you want to help me with this project or just test this.
pip install --user -r requirements/base.txt # if you want to use this on production

Create following envorinment variables:

export DEBUG=True # False for production envorinment
export SECRET_KEY=SecretKey # Some secret key, keep it secure. Remember - sessions will be erased in case of changing this key.
export DATABASE_NAME=fastpost.sqlite3 # Filename of the database

Fill your database and run Django development server:

python manage.py migrate
python manage.py runserver

To run with a docker compose

docker-compose up

Fastpost will be available on localhost:8000 (by default).

Releases

No releases published

Packages

No packages published

Languages