Skip to content

Commit 62df724

Browse files
committed
Fix typo
1 parent ea00f65 commit 62df724

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

docs/deployment-on-heroku.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@ Run these commands to deploy the project to Heroku:
2323
heroku addons:create mailgun:starter
2424
2525
heroku config:set PYTHONHASHSEED=random
26-
26+
2727
heroku config:set WEB_CONCURRENCY=4
28-
28+
2929
heroku config:set DJANGO_DEBUG=False
3030
heroku config:set DJANGO_SETTINGS_MODULE=config.settings.production
3131
heroku config:set DJANGO_SECRET_KEY="$(openssl rand -base64 64)"
32-
33-
# Generating a 32 character-long random string without any of the visually similiar characters "IOl01":
32+
33+
# Generating a 32 character-long random string without any of the visually similar characters "IOl01":
3434
heroku config:set DJANGO_ADMIN_URL="$(openssl rand -base64 4096 | tr -dc 'A-HJ-NP-Za-km-z2-9' | head -c 32)/"
35-
35+
3636
# Set this to your Heroku app url, e.g. 'bionic-beaver-28392.herokuapp.com'
3737
heroku config:set DJANGO_ALLOWED_HOSTS=
38-
38+
3939
# Assign with AWS_ACCESS_KEY_ID
4040
heroku config:set DJANGO_AWS_ACCESS_KEY_ID=
41-
41+
4242
# Assign with AWS_SECRET_ACCESS_KEY
4343
heroku config:set DJANGO_AWS_SECRET_ACCESS_KEY=
44-
44+
4545
# Assign with AWS_STORAGE_BUCKET_NAME
4646
heroku config:set DJANGO_AWS_STORAGE_BUCKET_NAME=
4747

docs/deployment-on-pythonanywhere.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Once you've been through this one-off config, future deployments are much simple
2929
Getting your code and dependencies installed on PythonAnywhere
3030
--------------------------------------------------------------
3131

32-
Make sure your project is fully commited and pushed up to Bitbucket or Github or wherever it may be. Then, log into your PythonAnywhere account, open up a **Bash** console, clone your repo, and create a virtualenv:
32+
Make sure your project is fully committed and pushed up to Bitbucket or Github or wherever it may be. Then, log into your PythonAnywhere account, open up a **Bash** console, clone your repo, and create a virtualenv:
3333

3434
.. code-block:: bash
3535
@@ -153,7 +153,7 @@ Back on the Web tab, hit **Reload**, and your app should be live!
153153

154154

155155
**NOTE:** *you may see security warnings until you set up your SSL certificates. If you
156-
want to supress them temporarily, set DJANGO_SECURE_SSL_REDIRECT to blank. Follow
156+
want to suppress them temporarily, set DJANGO_SECURE_SSL_REDIRECT to blank. Follow
157157
the instructions here to get SSL set up: https://help.pythonanywhere.com/pages/SSLOwnDomains/*
158158

159159

docs/testing.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ You will get a readout of the `users` app that has already been set up with test
1919

2020
If you set up your project to `develop locally with docker`_, run the following command: ::
2121

22-
$ docker-compose -f local.yml run django pytest
22+
$ docker-compose -f local.yml run django pytest
2323

24-
Targetting particular apps for testing in ``docker`` follows a similar pattern as previously shown above.
24+
Targeting particular apps for testing in ``docker`` follows a similar pattern as previously shown above.
2525

2626
Coverage
2727
--------
@@ -36,9 +36,9 @@ Once the tests are complete, in order to see the code coverage, run the followin
3636

3737
.. note::
3838

39-
At the root of the project folder, you will find the `pytest.ini` file. You can use this to customize_ the ``pytest`` to your liking.
39+
At the root of the project folder, you will find the `pytest.ini` file. You can use this to customize_ the ``pytest`` to your liking.
4040

41-
There is also the `.coveragerc`. This is the configuration file for the ``coverage`` tool. You can find out more about `configuring`_ ``coverage``.
41+
There is also the `.coveragerc`. This is the configuration file for the ``coverage`` tool. You can find out more about `configuring`_ ``coverage``.
4242

4343
.. seealso::
4444

{{cookiecutter.project_slug}}/docs/pycharm/configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This repository comes with already prepared "Run/Debug Configurations" for docke
1414

1515
.. image:: images/2.png
1616

17-
But as you can see, at the beggining there is something wrong with them. They have red X on django icon, and they cannot be used, without configuring remote python interpteter. To do that, you have to go to *Settings > Build, Execution, Deployment* first.
17+
But as you can see, at the beginning there is something wrong with them. They have red X on django icon, and they cannot be used, without configuring remote python interpteter. To do that, you have to go to *Settings > Build, Execution, Deployment* first.
1818

1919

2020
Next, you have to add new remote python interpreter, based on already tested deployment settings. Go to *Settings > Project > Project Interpreter*. Click on the cog icon, and click *Add Remote*.

0 commit comments

Comments
 (0)