aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile (unfollow)
Commit message (Collapse)AuthorLines
2021-06-27Add docker-compose.override.yml to gitignoreGravatar Numerlor-0/+3
2021-06-27Hyperlink code jam banner to code jam page.Gravatar lemonsaurus-2/+6
2021-06-27Update banners to have vertically centered text.Gravatar lemonsaurus-0/+0
2021-06-27Docker-compose: upgrade to postgres 13Gravatar Matteo Bertucci-1/+1
We have been using postgres 13 in production for a long time, but we never actually updated the docker-compose environment.
2021-06-27Put Summer Code Jam '21 banner on the front page.Gravatar lemonsaurus-10/+7
2021-06-27Add some new Summer Code Jam banners.Gravatar lemonsaurus-0/+0
2021-06-27Move existing code jam assets into a folder.Gravatar lemonsaurus-9/+9
2021-06-24Recreate nitro message length migration and name itGravatar bast-2/+2
2021-06-24Add pragma: no cover to mark failure condition of test as known okGravatar bast-1/+1
2021-06-23Fix typosGravatar Janine vN-2/+2
2021-06-23Change time to UTCGravatar Janine vN-1/+1
2021-06-23Updating bootcamp informationGravatar Janine vN-9/+14
Adds time and more information about the GitHub bootcamp.
2021-06-23Update git bootcamp dateGravatar Boris Muratov-1/+1
2021-06-21Clarify prize detailsGravatar Janine vN-3/+3
Clarify that each member of a winning team gets one of the licenses as a prize. They don't have to Lord of Flies duel it out.
2021-06-21Spell GitHub's name correctlyGravatar Janine vN-1/+1
One day I'll spell GitHub correctly and consistently. One day...
2021-06-21Update qualifier repo and sign-up linkGravatar Janine vN-3/+3
2021-06-21Remove RLBot from Communities listGravatar Joe Banks-13/+0
2021-06-21Update navbar hamburger/dropdown anchors to spansGravatar Joe Banks-4/+4
There is no href on these items, so they should not be anchors.
2021-06-20Adds Prizes section to CJ8 pageGravatar Janine vN-0/+65
This adds a Prizes section to the Code Jam 8 page. Links, descriptions, and a quick summation of the prizes offered by each sponsor is included. The Python Discord prizes should also be included at a later date.
2021-06-20Add Tabnine as a sponsorGravatar Janine vN-0/+3
Adds tabnine as a sponsor on the events sidebar.
2021-06-20Add in information about the QualifierGravatar Janine vN-5/+22
This adds in a section about the qualifier and links to it and the sign-up form.
2021-06-20Adding GitHub Bootcamp InformationGravatar Janine vN-0/+41
This commit adds some basic information about the github bootcamp. More information should and will be added later, but this adds some of the basics and adds it to the sidebar.
2021-06-18Use BigInt for permissions field and remove max value validatorGravatar Chris-6/+21
BigInt is needed as Discord's permissions number now exceeds that which can be stored in a normal int. I have removed the max value validator, as this just adds maintanence burden for us each time Discord adds new permissions.
2021-06-18Adjust Message model to support new nitro messages with over 4000 charsGravatar bast-2/+58
2021-06-16Add cache purge step to CI deploy stage (#533)Gravatar Joe Banks-0/+6
2021-06-15Approve more frameworksGravatar Janine vN-0/+19
Python Prompt Toolkit is added as an approved framework. Unicurses and nurses are added as additional frameworks you can use with curses, although it's a use at your own risk and no promises are made for functionality or stability.
2021-06-15Fix error_page stylesheet (#531)Gravatar Fares Ahmed-1/+1
2021-06-15Code Jam 8 Site Updates - v2 (#530)Gravatar Janine vN-21/+26
Co-authored-by: Joe Banks <[email protected]>
2021-06-15Code Jam 8 - Initial PR for Announcement (#528)Gravatar Janine vN-5/+229
2021-06-10Added Cloudflare to Sponsors list (#527)Gravatar Kronifer-0/+2
2021-06-07Address review comments.Gravatar Johannes Christ-2/+6
- Link detail section in environment variables section. - Update old static path from pre-Docker environment times and mention the Docker setup. diff --git a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/site.md b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/site.md index 8c21b5b0..24227f24 100644 --- a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/site.md +++ b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/site.md @@ -79,6 +79,9 @@ SECRET_KEY=suitable-for-development-only STATIC_ROOT=staticfiles ``` +The [Configuration in Detail](#configuration-in-detail) section contains +detailed information about these settings. + #### Notes regarding `DATABASE_URL` - If the database is hosted locally i.e. on the same machine as the webserver, then use `localhost` for the host. Windows and macOS users may need to use the [Docker host IP](../hosts-file/#windows) instead. @@ -173,5 +176,6 @@ The website is configured through the following environment variables: - **`SECRET_KEY`**: The secret key used in various parts of Django. Keep this secret as the name suggests! This is managed for you in debug setups. -- **`STATIC_ROOT`**: The root in which `python manage.py collectstatic` collects - static files. Optional, defaults to `/var/www/pythondiscord.com`. +- **`STATIC_ROOT`**: The root in which `python manage.py collectstatic` + collects static files. Optional, defaults to `/app/staticfiles` for the + standard Docker deployment.