-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* simplifying start * fix start generation * fix tests * fix tests * fix build on 3.5 * fix import order with python 3.5 :-(
- Loading branch information
1 parent
faf4b4a
commit 2e4f034
Showing
30 changed files
with
196 additions
and
821 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# flake8: noqa | ||
from .main import DatabaseChoice, ExampleChoice, SessionChoices, StartProject, TemplateChoice | ||
from .main import StartProject, check_dir_clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{{ name }} | ||
{{ '=' * name|length }} | ||
aiohttp demo app | ||
================ | ||
|
||
Your new web app is ready to go! | ||
|
||
To run your app you'll need to: | ||
|
||
1. Activate a python 3.5 or 3.6 environment | ||
1. Activate a python 3.6 or 3.7 environment | ||
2. Install the required packages with `pip install -r requirements.txt` | ||
3. Make sure the app's settings are configured correctly (see `activate_settings.sh` and `app/settings.py`). You can also | ||
3. Make sure the app's settings are configured correctly (see `app/settings.py`). You can also | ||
use environment variables to define sensitive settings, eg. DB connection variables | ||
4. You can then run your app during development with `adev runserver .` | ||
4. You can then run your app during development with `adev runserver -s static app` | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
""" | ||
{{ name }} | ||
""" | ||
Oops, something went wrong.