Skip to content

Commit 99a1777

Browse files
Readme and gitignore files added
1 parent 7aae1f3 commit 99a1777

File tree

2 files changed

+183
-0
lines changed

2 files changed

+183
-0
lines changed

.gitignore

+139
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
3+
# Created by https://www.gitignore.io/api/macos,visualstudiocode,node
4+
# Edit at https://www.gitignore.io/?templates=macos,visualstudiocode,node
5+
6+
### macOS ###
7+
# General
8+
.DS_Store
9+
.AppleDouble
10+
.LSOverride
11+
12+
# Icon must end with two \r
13+
Icon
14+
15+
# Thumbnails
16+
._*
17+
18+
# Files that might appear in the root of a volume
19+
.DocumentRevisions-V100
20+
.fseventsd
21+
.Spotlight-V100
22+
.TemporaryItems
23+
.Trashes
24+
.VolumeIcon.icns
25+
.com.apple.timemachine.donotpresent
26+
27+
# Directories potentially created on remote AFP share
28+
.AppleDB
29+
.AppleDesktop
30+
Network Trash Folder
31+
Temporary Items
32+
.apdisk
33+
34+
### Node ###
35+
# Logs
36+
logs
37+
*.log
38+
npm-debug.log*
39+
yarn-debug.log*
40+
yarn-error.log*
41+
lerna-debug.log*
42+
43+
# Diagnostic reports (https://nodejs.org/api/report.html)
44+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
45+
46+
# Runtime data
47+
pids
48+
*.pid
49+
*.seed
50+
*.pid.lock
51+
52+
# Directory for instrumented libs generated by jscoverage/JSCover
53+
lib-cov
54+
55+
# Coverage directory used by tools like istanbul
56+
coverage
57+
*.lcov
58+
59+
# nyc test coverage
60+
.nyc_output
61+
62+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
63+
.grunt
64+
65+
# Bower dependency directory (https://bower.io/)
66+
bower_components
67+
68+
# node-waf configuration
69+
.lock-wscript
70+
71+
# Compiled binary addons (https://nodejs.org/api/addons.html)
72+
build/Release
73+
74+
# Dependency directories
75+
node_modules/
76+
jspm_packages/
77+
78+
# TypeScript v1 declaration files
79+
typings/
80+
81+
# TypeScript cache
82+
*.tsbuildinfo
83+
84+
# Optional npm cache directory
85+
.npm
86+
87+
# Optional eslint cache
88+
.eslintcache
89+
90+
# Optional REPL history
91+
.node_repl_history
92+
93+
# Output of 'npm pack'
94+
*.tgz
95+
96+
# Yarn Integrity file
97+
.yarn-integrity
98+
99+
# dotenv environment variables file
100+
.env
101+
.env.test
102+
103+
# parcel-bundler cache (https://parceljs.org/)
104+
.cache
105+
106+
# next.js build output
107+
.next
108+
109+
# nuxt.js build output
110+
.nuxt
111+
112+
# vuepress build output
113+
.vuepress/dist
114+
115+
# Serverless directories
116+
.serverless/
117+
118+
# FuseBox cache
119+
.fusebox/
120+
121+
# DynamoDB Local files
122+
.dynamodb/
123+
124+
### VisualStudioCode ###
125+
.vscode/*
126+
!.vscode/settings.json
127+
!.vscode/tasks.json
128+
!.vscode/launch.json
129+
!.vscode/extensions.json
130+
131+
### VisualStudioCode Patch ###
132+
# Ignore all local history of files
133+
.history
134+
135+
# End of https://www.gitignore.io/api/macos,visualstudiocode,node
136+
137+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
138+
Typescript/*
139+
Webpack/*

Readme.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Project
2+
3+
From zero to FullStack - an unofficial course led by [Pedro Soares](https://github.com/pncsoares) with the aim of guiding and helping two friends to learn programming and become sotfware developers.
4+
5+
# Introduction
6+
7+
This repository aims to create `.html` and `.js` files so that Mariana can apply the knowledge that she have acquired.
8+
9+
# Technologies
10+
11+
- [Markdown](https://www.markdownguide.org/basic-syntax/)
12+
- [HTML](https://www.w3schools.com/html/html_basic.asp)
13+
- [JavaScript](https://www.w3schools.com/js/default.asp)
14+
15+
# Setup
16+
17+
## Run locally
18+
19+
Create and go to the directory where you want to place the repository
20+
21+
```bash
22+
cd directory
23+
```
24+
Clone the project
25+
26+
```bash
27+
git clone https://github.com/from-zero-to-fullstack/javascript-basics
28+
```
29+
30+
Go to the project directory
31+
32+
```bash
33+
cd javascript-basics
34+
```
35+
36+
Open in Visual Studio Code
37+
38+
```bash
39+
code .
40+
```
41+
42+
# License
43+
44+
MIT

0 commit comments

Comments
 (0)