Customization
Post-installation
- Add to
.gitignore
:.vscode
- Revise
README.md
. - Delete
/docs
- Reset source git:
rm -rf .git
Revise pyproject.toml
Insert your own values
[tool.poetry]
name = "your app"
version = "0.0.1"
description = "your description"
authors = ["your name <your@email>"]
Adjust initial content
/src/static/img
<root>
├── docs/ # can delete/modify this
├── src/ # main project folder
├── pages/
├── fixtures/
├── home.yml # list of features in Home, maps pages/views.py
├── legal.yml # where to place contracts / agreements
├── x.yml # list of repos in Popular, maps to pages/views.py
├── templates/
├── svg/ # where all the icons used by the boilerplate are stored
Enable Search
base.html | |
---|---|
Change Favicons
/src/static/img | |
---|---|
Finalize Social Auth Secrets
If social auth does not work, look at the error, e.g. redirect-uri-mismatch
. It may mean that the homepage url and the callback url must be first set to http since the site is not yet configured for https. Reset social auth secrets specific to the url, taking into account the host for the callback url, so that the proper callback url matches the production url.