This is the repository for the website of the new unitary Buckinghamshire Council.
Please review the technical documentation before working on this project.
This project contains technical documentation written in Markdown in the /docs
folder. This covers:
- continuous integration
- deployment
- git branching
- project conventions
You can find a hosted version of the technical documentation on GitHub Pages.
If you have a local copy of the repo, you can also view the docs with mkdocs
by running:
pip install -r requirements-docs.txt
mkdocs serve
The documentation will be available at: http://localhost:8001/
This repository includes docker-compose
configuration for running the project in local Docker containers,
and a fabfile for provisioning and managing this.
There are a number of other commands to help with development using the fabric script. To see them all, run:
fab -l
The following are required to run the local environment. The minimum versions specified are confirmed to be working: if you have older versions already installed they may work, but are not guaranteed to do so.
- Docker, version 19.0.0 or up
- Docker Desktop for Mac installer
- Docker Engine for Linux installers
- Docker Compose, version 1.24.0 or up
- Install instructions (Linux-only: Compose is already installed for Mac users as part of Docker Desktop.)
- Fabric, version 2.4.0 or up
- Python, version 3.6.9 or up
Note that on Mac OS, if you have an older version of fabric installed, you may need to uninstall the old one and then install the new version with pip3:
pip uninstall fabric
pip3 install fabric
You can manage different python versions by setting up pyenv
: https://realpython.com/intro-to-pyenv/
Additionally, for interacting with production / staging environments, you'll need:
If you are using Docker Desktop, ensure the Resources:File Sharing settings allow the cloned directory to be mounted in the web container (avoiding mounting
OCI runtime failures at the end of the build step).
Starting a local build can be done by running:
git clone [email protected]:buckinghamshire-council/bc.git
cd bc
cp bc/settings/local.py.example bc/settings/local.py
fab build
fab migrate
fab start
This will start the containers in the background, but not Django. To do this, connect to the web container with fab sh
and run honcho start
to start both Django and the Webpack dev server in the foreground.
Then, connect to the running container again (fab sh
) and:
dj createcachetable
dj createsuperuser
The site should be available on the host machine at: http://127.0.0.1:8000/
If you only wish to run the frontend or backend tooling, the commands honcho
runs are in docker/Procfile
.
Upon first starting the container, the static files may not exist, or may be out of date. To resolve this, simply run npm run build
.
Here are the common commands:
# Install front-end dependencies.
npm install
# Start the Webpack build in watch mode, without live-reload.
npm run start
# Do a one-off Webpack development build.
npm run build
# Do a one-off Webpack production build.
npm run build:prod
There are two ways to run the frontend tooling:
- In Docker. This is the default, most portable and secure, but much slower on macOS.
- Or run npm commands from a terminal on your local machine. Create a
.env
file in the project root (see.env.example
) withFRONTEND=local
.fab start
will no longer start afrontend
container. Now, when runningfab start
, Docker won't attempt to bind to the ports needed for the frontend dev server, meaning they can be run locally. All the tooling still remains available in the container.
This project is open source, but not really a collaborative project. The features of this project are specifically developed for the needs of the Buckinghamshire Council. Additional features are unlikely to be added, unless they are specifically requested by the council. Bugfixes are welcome and will be reviewed.
Please read and adhere to the guidlines outlined in the technical documentation.
The main convention for new developers to be aware of is the branching model.
- Create new feature or fix branches from the
release
branch. - Create make merge/pull requests back to that branch.
See the project conventions for full details.