Skip to content

Commit

Permalink
ADD capstone fullstack project
Browse files Browse the repository at this point in the history
  • Loading branch information
vnk8071 committed Oct 10, 2023
1 parent a30a876 commit e2112f7
Show file tree
Hide file tree
Showing 44 changed files with 2,718 additions and 6 deletions.
462 changes: 462 additions & 0 deletions docs/fullstack_web_projects/capstone.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ container to AWS Elastic Kubernetes Service using the CI/CD pipeline.

### Source code: [vnk8071/server_deployment_containerization](https://github.com/vnk8071/machine-learning-in-production/tree/main/projects/server_deployment_containerization)

### Template: [vnk8071/pipeline-deploy-kubernetes-on-aws](https://github.com/vnk8071/pipeline-deploy-kubernetes-on-aws)

## Full Stack Capstone
You will now combine all of the new skills you’ve learned and developed in this course to construct a database-backed web API with user access control. You will choose what app to build and then you’ll design and build out all of the API endpoints needed for the application and properly secure them for use in any front end application (web or mobile).

### Capstone [Casting Agency](https://learn.udacity.com/nanodegrees/nd0044/parts/cd2200/lessons/60e3bf46-bc2a-49e2-b1f1-cf66b7adca2c/concepts/2f15e760-ff4d-49ac-b026-0988d50b5aac)
### Capstone [Coffee Shop Fullstack](https://learn.udacity.com/nanodegrees/nd0044/parts/cd2200/lessons/60e3bf46-bc2a-49e2-b1f1-cf66b7adca2c/concepts/2f15e760-ff4d-49ac-b026-0988d50b5aac)

### Source code: [vnk8071/capstone_fullstack_web](https://github.com/vnk8071/machine-learning-in-production/tree/main/projects/capstone_fullstack_web)
File renamed without changes.
14 changes: 14 additions & 0 deletions projects/capstone_fullstack_web/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
venv/
.vscode/
__pycache__/
test.db

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
8 changes: 8 additions & 0 deletions projects/capstone_fullstack_web/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM python:3.8-slim
COPY . /app
WORKDIR /app

RUN pip install --upgrade pip
RUN pip install -r requirements.txt

ENTRYPOINT ["gunicorn", "-b", ":5000", "api:app"]
Loading

0 comments on commit e2112f7

Please sign in to comment.