Skip to content

Commit a2bd2f8

Browse files
Initial Commit
0 parents  commit a2bd2f8

4 files changed

+392
-0
lines changed

Pipfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
8+
[packages]
9+
flask = "==1.0.2"
10+
11+
[requires]
12+
python_version = "3.6"

Pipfile.lock

+63
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flasklanding.sublime-project

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"folders":
3+
[
4+
{
5+
"path": "."
6+
}
7+
]
8+
}

flasklanding.sublime-workspace

+309
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,309 @@
1+
{
2+
"auto_complete":
3+
{
4+
"selected_items":
5+
[
6+
[
7+
"pr",
8+
"presigned_data"
9+
],
10+
[
11+
"post",
12+
"post_data"
13+
],
14+
[
15+
"ra",
16+
"raw_filename"
17+
],
18+
[
19+
"de",
20+
"detail"
21+
],
22+
[
23+
"file",
24+
"filetype"
25+
],
26+
[
27+
"fi",
28+
"filetype"
29+
],
30+
[
31+
"csr",
32+
"csrf_exempt"
33+
],
34+
[
35+
"BA",
36+
"BASE_DIR"
37+
],
38+
[
39+
"get_",
40+
"get_file_ext"
41+
],
42+
[
43+
"for",
44+
"force_download"
45+
],
46+
[
47+
"s3",
48+
"s3_session"
49+
],
50+
[
51+
"se",
52+
"session"
53+
]
54+
]
55+
},
56+
"buffers":
57+
[
58+
{
59+
"contents": "# Flask Landing\n\n\n### 1. Create virtual environment\nThis keeps all requirements (aka code versions) for this project consistent so your other/new python projects don't break.\n\nThree options:\n\n1. Python3 Built -in Virtual Environment\n```\npython3 -m venv .\n```\n\n2. `virtualenv` package\n```\nvirtualenv -p python3.6 .\n```\n\n3. `pipenv` package (our choice)\n```\npipenv shell --python 3.6 .\n```\n\n\n\n\n\n\n\n### 2. Hello World with Flask.\nAs per the [docs](http://flask.pocoo.org/), it looks like this:\n\n```python\nfrom flask import Flask\napp = Flask(__name__)\n\n@app.route(\"/\")\ndef hello():\n return \"Hello World!\"\n```\n\n\n```python\nfrom flask import Flask\nlanding_app = Flask(__name__)\n\n@landing_app.route(\"/\")\ndef hello():\n return \"Hello World!\"\n```\n\n\n\n",
60+
"settings":
61+
{
62+
"buffer_size": 744,
63+
"line_ending": "Unix",
64+
"name": "# Flask Landing"
65+
}
66+
},
67+
{
68+
"settings":
69+
{
70+
"buffer_size": 0,
71+
"line_ending": "Unix"
72+
}
73+
}
74+
],
75+
"build_system": "",
76+
"build_system_choices":
77+
[
78+
],
79+
"build_varint": "",
80+
"command_palette":
81+
{
82+
"height": 0.0,
83+
"last_filter": "",
84+
"selected_items":
85+
[
86+
],
87+
"width": 0.0
88+
},
89+
"console":
90+
{
91+
"height": 0.0,
92+
"history":
93+
[
94+
]
95+
},
96+
"distraction_free":
97+
{
98+
"menu_visible": true,
99+
"show_minimap": false,
100+
"show_open_files": false,
101+
"show_tabs": false,
102+
"side_bar_visible": false,
103+
"status_bar_visible": false
104+
},
105+
"expanded_folders":
106+
[
107+
"/Users/cfe/Dev/flasklanding"
108+
],
109+
"file_history":
110+
[
111+
"/Users/cfe/Dev/cfedirect/README.md",
112+
"/Users/cfe/Dev/cfedirect/src/cfehome/settings/base.py",
113+
"/Users/cfe/Dev/cfedirect/src/cfehome/settings/local.py",
114+
"/Users/cfe/Dev/cfedirect/src/cfehome/settings/production.py",
115+
"/Users/cfe/Dev/cfedirect/src/files/serializers.py",
116+
"/Users/cfe/Dev/cfedirect/.gitignore",
117+
"/Users/cfe/Dev/cfedirect/src/files/models.py",
118+
"/Users/cfe/Dev/cfedirect/src/files/views.py",
119+
"/Users/cfe/Dev/cfedirect/src/cfehome/urls.py",
120+
"/Users/cfe/Dev/cfedirect/src/templates/base.html",
121+
"/Users/cfe/Dev/cfedirect/src/templates/upload.html",
122+
"/Users/cfe/Dev/cfedirect/src/cfehome/aws/utils.py",
123+
"/Users/cfe/Dev/cfedirect/src/files/admin.py",
124+
"/Users/cfe/Dev/cfedirect/src/cfehome/aws/conf.py",
125+
"/Users/cfe/Dev/cfedirect/src/cfehome/aws/test_aws_conf.py",
126+
"/Users/cfe/Dev/cfedirect/src/cfehome/aws/test_aws_config.py",
127+
"/Users/cfe/Dev/cfehome/src/cfehome/aws/storages.py",
128+
"/Users/cfe/Dev/cfehome/src/cfehome/settings/base.py",
129+
"/Users/cfe/Dev/cfehome/src/cfehome/aws/__init__.py",
130+
"/Volumes/CFE_2018/CFE Projects/Current/Coding with macOS/Todo/To do.md",
131+
"/Volumes/CFE_2018/CFE Projects/Current/coding with macOS/To do.md"
132+
],
133+
"find":
134+
{
135+
"height": 64.0
136+
},
137+
"find_in_files":
138+
{
139+
"height": 0.0,
140+
"where_history":
141+
[
142+
]
143+
},
144+
"find_state":
145+
{
146+
"case_sensitive": false,
147+
"find_history":
148+
[
149+
],
150+
"highlight": true,
151+
"in_selection": false,
152+
"preserve_case": false,
153+
"regex": false,
154+
"replace_history":
155+
[
156+
],
157+
"reverse": false,
158+
"show_context": true,
159+
"use_buffer2": true,
160+
"whole_word": false,
161+
"wrap": true
162+
},
163+
"groups":
164+
[
165+
{
166+
"selected": 1,
167+
"sheets":
168+
[
169+
{
170+
"buffer": 0,
171+
"semi_transient": false,
172+
"settings":
173+
{
174+
"buffer_size": 744,
175+
"regions":
176+
{
177+
},
178+
"selection":
179+
[
180+
[
181+
547,
182+
547
183+
]
184+
],
185+
"settings":
186+
{
187+
"auto_name": "# Flask Landing",
188+
"syntax": "Packages/Text/Plain text.tmLanguage"
189+
},
190+
"translation.x": 0.0,
191+
"translation.y": 1260.0,
192+
"zoom_level": 1.0
193+
},
194+
"stack_index": 1,
195+
"type": "text"
196+
},
197+
{
198+
"buffer": 1,
199+
"semi_transient": false,
200+
"settings":
201+
{
202+
"buffer_size": 0,
203+
"regions":
204+
{
205+
},
206+
"selection":
207+
[
208+
[
209+
0,
210+
0
211+
]
212+
],
213+
"settings":
214+
{
215+
"syntax": "Packages/Text/Plain text.tmLanguage"
216+
},
217+
"translation.x": 0.0,
218+
"translation.y": 0.0,
219+
"zoom_level": 1.0
220+
},
221+
"stack_index": 0,
222+
"type": "text"
223+
}
224+
]
225+
}
226+
],
227+
"incremental_find":
228+
{
229+
"height": 52.0
230+
},
231+
"input":
232+
{
233+
"height": 64.0
234+
},
235+
"layout":
236+
{
237+
"cells":
238+
[
239+
[
240+
0,
241+
0,
242+
1,
243+
1
244+
]
245+
],
246+
"cols":
247+
[
248+
0.0,
249+
1.0
250+
],
251+
"rows":
252+
[
253+
0.0,
254+
1.0
255+
]
256+
},
257+
"menu_visible": true,
258+
"output.find_results":
259+
{
260+
"height": 0.0
261+
},
262+
"pinned_build_system": "",
263+
"project": "flasklanding.sublime-project",
264+
"replace":
265+
{
266+
"height": 100.0
267+
},
268+
"save_all_on_build": true,
269+
"select_file":
270+
{
271+
"height": 0.0,
272+
"last_filter": "",
273+
"selected_items":
274+
[
275+
],
276+
"width": 0.0
277+
},
278+
"select_project":
279+
{
280+
"height": 0.0,
281+
"last_filter": "",
282+
"selected_items":
283+
[
284+
],
285+
"width": 0.0
286+
},
287+
"select_symbol":
288+
{
289+
"height": 0.0,
290+
"last_filter": "",
291+
"selected_items":
292+
[
293+
],
294+
"width": 0.0
295+
},
296+
"selected_group": 0,
297+
"settings":
298+
{
299+
},
300+
"show_minimap": true,
301+
"show_open_files": true,
302+
"show_tabs": true,
303+
"side_bar_visible": true,
304+
"side_bar_width": 244.0,
305+
"status_bar_visible": true,
306+
"template_settings":
307+
{
308+
}
309+
}

0 commit comments

Comments
 (0)