Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First pass at a django app that auto-generates most boilerplate! #1

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4672b7d
Add some stuff
jtratner Apr 11, 2021
6bebee5
License authors and .gitignore
jtratner Apr 15, 2021
eef531e
Set up turtle shell and examples
jtratner Apr 11, 2021
e55e740
Do better job with enums
jtratner Apr 12, 2021
be28cc9
Getting empty value working woo
jtratner Apr 12, 2021
31d4f60
Clean ups and such
jtratner Apr 12, 2021
8af8d8e
Stuff seems to mostly work yay
jtratner Apr 12, 2021
6847193
Restructure tests yay
jtratner Apr 12, 2021
ab6db6c
Switch to better config name
jtratner Apr 13, 2021
cc510aa
Blackify
jtratner Apr 13, 2021
7ae73b6
Clean up some messages etc
jtratner Apr 13, 2021
d3e1152
Formatting updates
jtratner Apr 15, 2021
80fb1a1
Basic pyproject
jtratner Apr 15, 2021
25bbf01
Poetry locking
jtratner Apr 15, 2021
d7bd897
Set up pytest and setup
jtratner Apr 15, 2021
e234a90
Include manifest file
jtratner Apr 15, 2021
9f40f67
Cleaning up some remaining testing stuff
jtratner Apr 15, 2021
177aa48
Set up README
jtratner Apr 15, 2021
c399367
Remove print statements
jtratner May 1, 2021
95c2f31
Clean up table generation
jtratner May 11, 2021
9f0e753
Remove extraneous a anchor tag
jtratner May 11, 2021
43bb39a
Fix up html formatting
jtratner May 11, 2021
a0badca
Fix up execution list view
jtratner May 12, 2021
6b11974
Remove extra p tag
jtratner May 12, 2021
2c837a4
Use templateview for overview for normal context
jtratner May 12, 2021
686fa9a
Fix up summary view sigh
jtratner May 12, 2021
5b98be1
Blackify cleanups
jtratner May 12, 2021
bd892ed
Update README for better graphql explanation
jtratner Aug 17, 2021
8b1fb4a
Add instructions to run the tests
jtratner Feb 2, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
*.py[co]
.project
.pydevproject
*~
*.db
*.orig
*.DS_Store
.tox
*.egg/*
.eggs/
*.egg-info/*
build/*
docs/_build/*
dist/*

*.log
nosetests*.xml

.coverage
coverage.xml
coverage

test.db
.venv

*.sublime-workspace
.python-version
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Jeffrey Tratner @jtratner
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2021 Jeff Tratner

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include README.rst
include LICENSE
recursive-include turtle_shell/static *
recursive-include turtle_shell/templates *
recursive-include docs *
Loading