This is the repository for the San Diego Python website at sandiegopython.org.
- Python v3.10
- Node v20
pip install -r requirements/local.txt # Install local Python requirements
npm install # Install JS dependencies for frontend CSS/JS
npm run build # Build CSS (continuously with `npm run watch`)
pre-commit install # Setup code standard pre-commit hook
./manage.py migrate # Create a local development database
./manage.py createsuperuser # Create a local development administrator user
./manage.py runserver # Starts a local development server at http://localhost:8000
The entire test suite can be run with tox:
tox
To test the Dockerfile that is used for deployment, you can build the container and run it locally:
# Setup your local environment variables used with Docker
# This only needs to be run once
cp .env/local.sample .env/local
# Build the docker image for sandiegopython.org
# Use Docker compose to have Redis and PostgreSQL just like in production
# Note: Docker is used in production but Docker compose is just for development
make dockerbuild
# Start a development web server on http://localhost:8000
# Use ctrl+C to stop
make dockerserve
# While the server is running,
# you can start a bash shell to the container with the following:
# Once you have a bash shell, you can run migrations,
# manually connect to the local Postgres database or anything else
make dockershell
This site is deployed to Fly.io.
It is deployed automatically when code is merged to the main
branch
via GitHub Actions.
To deploy manually, you will need to be a member of the San Diego Python team on Fly. Once you're a member of the team, you can deploy with:
make deploy