diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..27d975b Binary files /dev/null and b/.DS_Store differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..936714c --- /dev/null +++ b/README.md @@ -0,0 +1,53 @@ +# Project Document + + + +## Your final outcome: +- You will build a *dynamic* **web application** using the CS tools you learned so far! + + +## Project Plan: +In this challenge, you are assigned a [Company] who came to you with a problem statement. Brainstorm ways to solve the problem, and integrate your CS skills in the solution! + + +## Official Requirements: +Final Outcome: +- User Interactivity/Friendliness +- Uses Flask (Routing & Forms) +- Databases implemented (2 functions of C(reate) R(ead) U(pdate) D(elete)) + + +### Bonus: +- APIs + + + +## Why should you care? +You learned about Front-end (HTML, CSS and JS) and Back-end (Python, Flask and Firebase). Now it’s time to put all of this knowledge combined together to the test! +The best way to practice and solidify all of these new concept in programming is to actually implement it, so this project gives you a chance to make practical use of what you’ve learned. + + +## Brainstorming: +1. Brainstorm ways you can use a web application to solve your company's challenge. +- Can be on paper & pen or a tool of your choice. *Make sure to save your documentation somewhere safe as you are encouraged to submit it!* + +## Storyboarding & Wireframing: +1. Draw the storyboards and wireframe of your different pages! +- Can be on paper & pen or a wireframing tool of your choice (such as [NinjaMock](https://ninjamock.com/)). +- For getting a color scheme, here's a [useful website](https://coolors.co/) +- Wireframe example: + + +- Storyboard example: + + + +## Building/Workflow: +1. Brainstorming +2. Writing down your plan *(must)*, Storyboarding & Wireframing *must)* + Choosing a color scheme *(optional)* +3. Implementation (Coding + building everything together) + + + + +Don't forget the entrep and CS team is always here for you! To help push and support your work and creativity. Don't hesitate to approach anyone on the team for anything on your mind! diff --git a/case-study-skeleton/.DS_Store b/case-study-skeleton/.DS_Store new file mode 100644 index 0000000..5b80eae Binary files /dev/null and b/case-study-skeleton/.DS_Store differ diff --git a/case-study-skeleton/app.py b/case-study-skeleton/app.py new file mode 100644 index 0000000..9fc925f --- /dev/null +++ b/case-study-skeleton/app.py @@ -0,0 +1,16 @@ +from flask import Flask, render_template, request, redirect, url_for, flash +from flask import session as login_session +import pyrebase + +app = Flask(__name__, template_folder='templates', static_folder='static') +app.config['SECRET_KEY'] = 'super-secret-key' + +#Code goes below here + + + + +#Code goes above here + +if __name__ == '__main__': + app.run(debug=True) \ No newline at end of file diff --git a/case-study-skeleton/static/.DS_Store b/case-study-skeleton/static/.DS_Store new file mode 100644 index 0000000..1ab5b9f Binary files /dev/null and b/case-study-skeleton/static/.DS_Store differ diff --git a/case-study-skeleton/static/css/style.css b/case-study-skeleton/static/css/style.css new file mode 100644 index 0000000..e69de29 diff --git a/case-study-skeleton/templates/index.html b/case-study-skeleton/templates/index.html new file mode 100644 index 0000000..0ee69ec --- /dev/null +++ b/case-study-skeleton/templates/index.html @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file