A starter Django project with Comments model and TinyMCE
Create a Python virtual environment,
$ python3 -m venv .venv
Activate the virtual environment,
$ source .venv/bin/activate
Install Python packages,
$ pip install -r requirements.txt
Run the following command to start the development server,
$ python manage.py runserver
Then visit http://127.0.0.1:8000
$ python manage.py createsuperuser
Then you can manage the data via Django admin panel - http://127.0.0.1:8000/admin
Make the migration files,
$ python3 manage.py makemigrations
Migrate the models,
$ python3 migrate.py migrate
Go to the admin page http://127.0.0.1:8000/admin
, and add an article there.
Open the home page http://127.0.0.1:8000
, and you can add comments to the article.