Introduction
Setting up your local environment
Continuous integration
Docker
Continuous Delivery
Cloud Computing
Continuous deployment
Chapter 3
Practice
Assignment
Back to core program
Under construction
<aside>
🚧
This page is currently under construction. Please check back later.
</aside>
- npx create-express —git week-13
- cd week-13
- npm install
- ./bin/www
- go to locahost:3000/users
- kill ./bin/www (ctrl+c)
- GIT
- check the default branch name!
- git init
- git add .gitignore
- git add ./*
- git commit -m “feat: scaffold expressjs basic server”
- https://prettier.io/docs/install
npm install --save-dev --save-exact prettier
- Create .prettierrc with
{} in it
- add to the script section of package.json
"lint": "prettier --write .",
"lint:ci": "prettier --check ."
- Run
npm run lint:ci → look at what it says
- Run
npm run lint and then git status (or shall we make them run git diff?)
- Commit
- Create a GitHub repository
- git remote add origin git@github…..
- git push origin main

*https://hackyourfuture.net/*
Found a mistake or have a suggestion? Let us know in the feedback form.