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

Initial Functionality #2

Draft
wants to merge 63 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
63 commits
Select commit Hold shift + click to select a range
e7d62de
Create Poetry project
thebeanogamer Feb 23, 2020
5e563b0
Add Flask base
thebeanogamer Feb 23, 2020
f53f35a
Render index
thebeanogamer Feb 27, 2020
e375a49
Basic index
thebeanogamer Feb 27, 2020
b7d94e0
Remove extra button tag
thebeanogamer Feb 27, 2020
de820d7
Fix Jinja
thebeanogamer Feb 29, 2020
a598001
Basic API interaction
thebeanogamer Feb 29, 2020
cdd6859
Assume unauthenticated
thebeanogamer Feb 29, 2020
3ca395c
Basic quote page
thebeanogamer Feb 29, 2020
a98eef8
Start CSS
thebeanogamer Feb 29, 2020
a542ce8
Use `.text`
thebeanogamer Feb 29, 2020
b985dc8
Link back to home
thebeanogamer Feb 29, 2020
99fc19e
Finish basic frontend
thebeanogamer Feb 29, 2020
b324152
W033
thebeanogamer Feb 29, 2020
2ee19c8
Fix quote retrieve
thebeanogamer Mar 25, 2020
3806727
Add HTTPX
thebeanogamer Mar 25, 2020
22ecfc2
Change deps
thebeanogamer Mar 25, 2020
cdf454d
Start DB code
thebeanogamer Mar 25, 2020
4168d65
Add basic quote retrieval
thebeanogamer Mar 29, 2020
db9af53
Create deployment pipeline
thebeanogamer Mar 29, 2020
8a4cb1b
Lint
thebeanogamer Mar 29, 2020
b027a1e
I100
thebeanogamer Mar 29, 2020
1309a3f
I202
thebeanogamer Mar 29, 2020
6641f87
Add Dockerfile
thebeanogamer Mar 29, 2020
4ca0a98
Setup Gunicorn
thebeanogamer Mar 29, 2020
63dce90
Don't copy WSGI examples
thebeanogamer Mar 29, 2020
a93f6df
Create Nginx config
thebeanogamer Mar 30, 2020
e695668
Fix job name
thebeanogamer Mar 30, 2020
89d44e8
Fix default config location
thebeanogamer Mar 30, 2020
1b91cfe
Docker Ignore
thebeanogamer Mar 30, 2020
6b3f950
Copy script
thebeanogamer Mar 30, 2020
8e08e5c
Fix CMD
thebeanogamer Mar 30, 2020
8bb1649
Nginx config location
thebeanogamer Mar 30, 2020
79913c3
Fix config path in script
thebeanogamer Mar 30, 2020
db464e3
Don't Sudo
thebeanogamer Mar 30, 2020
cd2b0b0
Fix shebang
thebeanogamer Mar 30, 2020
0250d7d
Disable SSL for testing
thebeanogamer Apr 2, 2020
91c6ec7
Define port
thebeanogamer Apr 2, 2020
baa5bc6
Attempt Kubernetes
thebeanogamer Apr 2, 2020
bc8ba88
Switch to Load Balancer
thebeanogamer Apr 2, 2020
732afc3
Consistant file names
thebeanogamer Apr 2, 2020
67af72c
Fix typo
thebeanogamer Apr 2, 2020
30fcdc9
Change port
thebeanogamer Apr 2, 2020
c8411c8
Fix Gunicorn
thebeanogamer Apr 2, 2020
51c072e
More workers
thebeanogamer Apr 2, 2020
6b618f9
Fix selector
thebeanogamer Apr 3, 2020
eac51a4
Switch to port 80
thebeanogamer Apr 4, 2020
cd2d630
Fix app name
thebeanogamer Apr 4, 2020
2ad19ac
Fix job name typo
thebeanogamer Apr 4, 2020
92042bc
Semicolons
thebeanogamer Apr 5, 2020
ac37f94
Correct Discord API URL
thebeanogamer Apr 5, 2020
5a2ca36
Catch Discord API
thebeanogamer Apr 5, 2020
fe31ef6
Simplify random
thebeanogamer Apr 5, 2020
494c85d
Actually select correct value
thebeanogamer Apr 5, 2020
a8e5145
Debug print
thebeanogamer Apr 5, 2020
e0e4edc
More debug
thebeanogamer Apr 5, 2020
56efd4e
Correct API URL
thebeanogamer Apr 5, 2020
16f2a64
Correct field name
thebeanogamer Apr 5, 2020
d2839c7
Return ID
thebeanogamer Apr 5, 2020
c0079d8
Remove jump link
thebeanogamer Apr 5, 2020
d0f4bca
Specify protocol
thebeanogamer Apr 5, 2020
389794b
Unescape newlines
thebeanogamer Apr 5, 2020
1b06616
Catch image only quotes
thebeanogamer Apr 5, 2020
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
Prev Previous commit
Next Next commit
Assume unauthenticated
  • Loading branch information
thebeanogamer committed Feb 29, 2020
commit cdd6859398216a4352830727f0c47b8ec8dfdae6
2 changes: 1 addition & 1 deletion quoteswebsite/__init__.py
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

@app.route("/", methods=["GET"])
def index():
return render_template("index.html")
return render_template("index.html", authenticated=False)

def main():
app.run(host="0.0.0.0")