mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
A little cleanup of the EB docs
This commit is contained in:
parent
716717fe53
commit
4b95bd9c5e
|
@ -18,18 +18,28 @@ Prerequisites
|
||||||
Instructions
|
Instructions
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
If you haven't done so, create a directory of environments.
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
# creates the directory of environments (servers)
|
|
||||||
eb init -p python3.4 {{ cookiecutter.project_slug }}
|
eb init -p python3.4 {{ cookiecutter.project_slug }}
|
||||||
|
|
||||||
# Creates the environment (server) where the app will run
|
|
||||||
eb create {{ cookiecutter.project_slug }}
|
|
||||||
# Note: This will fail on a postgres error, because postgres doesn't exist yet
|
|
||||||
|
|
||||||
# Make sure you are in the right environment
|
Once that is done, create the environment (server) where the app will run
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
eb create {{ cookiecutter.project_slug }}
|
||||||
|
# Note: This will eventually fail on a postgres error, because postgres doesn't exist yet
|
||||||
|
|
||||||
|
Now make sure you are in the right environment
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
eb list
|
eb list
|
||||||
|
|
||||||
|
TODO: Finsh it::
|
||||||
|
|
||||||
# If you are not in the right environment
|
# If you are not in the right environment
|
||||||
eb use {{ cookiecutter.project_slug }}
|
eb use {{ cookiecutter.project_slug }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user