A starter Django project with Comments model and TinyMCE
Create a Python virtual environment,
$ python3 -m venv .venvActivate the virtual environment,
$ source .venv/bin/activateInstall Python packages,
$ pip install -r requirements.txtRun the following command to start the development server,
$ python manage.py runserverThen visit http://127.0.0.1:8000
$ python manage.py createsuperuserThen you can manage the data via Django admin panel - http://127.0.0.1:8000/admin
Make the migration files,
$ python3 manage.py makemigrationsMigrate the models,
$ python3 migrate.py migrateGo 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.
