From c710d00b6a4dfa6ee6f82ccdfc906b2d7fa08059 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Wed, 27 Jul 2016 21:48:52 -0400 Subject: [PATCH] add more usage instructions --- README.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.rst b/README.rst index 93fdf9f..3f04481 100644 --- a/README.rst +++ b/README.rst @@ -22,5 +22,18 @@ To create a new starting project: .. code-block:: bash + # Create new project folder from the skeleton pip install cookiecutter cookiecutter https://github.com/brettlangdon/cookiecutter-flask-app.git + cd ./project_name + + # Setup new virtualenv and install dependencies + mkvirtualenv project_name + pip install -r requirements.txt + npm install + + # Start the server + python -m project_name runserver + + # Or, start using project script + PYTHONPATH. ./bin/project_name runserver