An app that allows users to apply for MIT Bootcamps, and admins to review those applications.
SECTIONS
This app follows the same initial setup steps outlined in the common ODL web app guide.
Run through those steps including the addition of /etc/hosts
aliases.
Add the following settings in your .env
file
# Replace this value with your own /etc/hosts alias for this app
BOOTCAMP_ECOMMERCE_BASE_URL=http://boot.odl.local
FEATURE_SOCIAL_AUTH_API=True
# Replace this with an email address you would like to set as the "from" address in Bootcamp emails
MAILGUN_FROM_EMAIL=[email protected]
# Replace this with an email address you would like all Bootcamp emails to go to
MAILGUN_RECIPIENT_OVERRIDE=[email protected]
# Ask a fellow developer for the values below, or pull them from one of our Heroku apps
MAILGUN_KEY=
MAILGUN_SENDER_DOMAIN=
-
Run the management command to ensure the existence of some required CMS pages
docker-compose run --rm web ./manage.py configure_cms
-
Create the required CMS resource pages
- Go to Settings > Resource Pages in the CMS
- For each of the options, create a resource page and save these updated settings
- Run the containers (
docker-compose up
) - Visit
/create-account
and follow the steps to create a new account, which includes validating your email address from the email link and filling out a profile. - After your first user is created and the profile is filled out, set that user as staff/superuser in a Django shell:
USER_EMAIL="[email protected]"
from django.contrib.auth import get_user_model
User = get_user_model()
User.objects.filter(email=USER_EMAIL).update(is_superuser=True, is_staff=True)
In order to get Cybersource integration working for completing test orders, ask a fellow developer for these values or pull them from one of the non-production Bootcamp Heroku apps:
CYBERSOURCE_ACCESS_KEY=
CYBERSOURCE_SECURITY_KEY=
CYBERSOURCE_TRANSACTION_KEY=
CYBERSOURCE_SECURE_ACCEPTANCE_URL=
CYBERSOURCE_PROFILE_ID=
CYBERSOURCE_REFERENCE_PREFIX=
In order to get video interviews working from your local app, ask a fellow developer for these values or pull them from one of the non-production Bootcamp Heroku apps:
JOBMA_ACCESS_TOKEN=
JOBMA_WEBHOOK_ACCESS_TOKEN=
JOBMA_BASE_URL=
- For testing/dev purposes, create a sandbox account under your enterprise account if one doesn't exist yet.
- You will also need a private app for your sandbox account
- Scopes:
- CRM: everything except quotes and feedback
- Standard: crm.export, crm.import, e-commerce, integration-sync
- Scopes:
- Set
MITOL_HUBSPOT_API_PRIVATE_TOKEN
to the private app token in your .env file - Set
MITOL_HUBSPOT_API_ID_PREFIX
to something unique to your dev instance, likebootcamps-dev-<initials>
Seed data can be generated via management command. It's designed to be idempotent, so running it multiple times should not create multiple sets of data.
docker-compose run --rm web ./manage.py seed_data
# To delete seed data
docker-compose run --rm web ./manage.py delete_seed_data
The logic for determining the state of a user's application and advancing them through each step is complicated enough that it's sometimes very annoying to test certain features. To help with this, there is a management command that you can use to force a user's application into a certain state:
docker-compose run --rm web ./manage.py set_application_state -i <your application id> --state <desired state>
# Examples:
docker-compose run --rm web ./manage.py set_application_state -i 123 --state AWAITING_PAYMENT
# Provide a user and run instead of a bootcamp application id
docker-compose run --rm web ./manage.py set_application_state --user [email protected] --run "Bootcamp Run 1" --state AWAITING_RESUME
Python dependencies are managed with poetry. If you need to add a new dependency, run this command:
docker compose run --rm web poetry add <dependency>
This will update the pyproject.toml
and poetry.lock
files. Then run docker-compose build web celery
to make the change permanent in your docker images.
Refer to the poetry documentation for particulars about specifying versions, removing dependencies, etc.