Skip to content

Edits #15

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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
83 changes: 62 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,70 @@
# Module Project: Deploying Web Apps - Portfolio Piece
# Getting Started with Create React App

In this module you will use what you've learned about deploying a web application, and deploy one of the apps you've built so that you can add it to your portfolio page.
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

## Objectives
- Build a simple static application
- Use vercel to deploy
In the project directory, you can run:

## Introduction
Think about which project you are most proud of up to this point that you have built from the ground up or consider designing a small new project. ***Do your best to rebuild that project within THIS repository***
### `npm start`

***Make sure to complete your tasks one at a time and complete test each task before proceding forward.***
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.

## Instructions
### Task 1: Project Set Up
* [ ] Create a forked copy of this project.
* [ ] Clone your OWN version of the repository in your terminal
* [ ] Use create react app to build a new project.
The page will reload when you make changes.\
You may also see any lint errors in the console.

### Task 2: Project Requirements
#### Build your DOM
* [ ] CD inside of created source
* [ ] Rebuild a static (non-api accessing) project here based on a previous assignment.
* [ ] Deploy to vercel.
* [ ] ***Make sure that your vercel project correctly points to the root folder of your project.***
### `npm test`

### Submission Format
- [ ] For this project, submit the link to your vercel hosted website.
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can't go back!**

If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.

You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)

### Analyzing the Bundle Size

This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)

### Making a Progressive Web App

This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)

### Advanced Configuration

This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)

### Deployment

This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)

### `npm run build` fails to minify

This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
29 changes: 29 additions & 0 deletions README.old.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Module Project: Deploying Web Apps - Portfolio Piece

In this module you will use what you've learned about deploying a web application, and deploy one of the apps you've built so that you can add it to your portfolio page.


## Objectives
- Build a simple static application
- Use vercel to deploy

## Introduction
Think about which project you are most proud of up to this point that you have built from the ground up or consider designing a small new project. ***Do your best to rebuild that project within THIS repository***

***Make sure to complete your tasks one at a time and complete test each task before proceding forward.***

## Instructions
### Task 1: Project Set Up
* [ ] Create a forked copy of this project.
* [ ] Clone your OWN version of the repository in your terminal
* [ ] Use create react app to build a new project.

### Task 2: Project Requirements
#### Build your DOM
* [ ] CD inside of created source
* [ ] Rebuild a static (non-api accessing) project here based on a previous assignment.
* [ ] Deploy to vercel.
* [ ] ***Make sure that your vercel project correctly points to the root folder of your project.***

### Submission Format
- [ ] For this project, submit the link to your vercel hosted website.
Loading