Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 701 Bytes

example_project.rst

File metadata and controls

26 lines (19 loc) · 701 Bytes

Example project

Django-machina provides an example project containing a standard installation of the module without any customizations.

This project uses the default forum settings and can be usefull for discovering django-machina's functionalities.

To run this project locally, you can follow these instructions:

$ git clone https://github.com/ellmetha/django-machina
$ cd django-machina
$ make
$ cd example_project/
$ make migrate
$ make superuser
$ poetry run python manage.py loaddata project/fixtures/*
$ make server

Note

The previous steps assumes you have Poetry installed on your system.