/forum

A simple Django Forum

Primary LanguagePythonGNU Affero General Public License v3.0AGPL-3.0

Forum

CI Docker Build

A simple forum, written in python with Django.

Local install (development)

Clone the repository

git clone https://github.com/xgaia/forum.git

Create and activate a python virtual env

cd forum
python3 -m venv venv && source venv/bin/activate

Install project dependencies

pip install -r requirements.txt

Serve

python manage.py runserver 8000

App is available at localhost:8000

Production deployment with docker and docker-compose

Use the docker-compose.yml file to deploy the app with docker.