Skip to content

Commit 6589fc8

Browse files
5 - Base Project Setup
1 parent a086fd8 commit 6589fc8

File tree

8 files changed

+187
-0
lines changed

8 files changed

+187
-0
lines changed

.gitignore

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,121 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
132+
# Logs
133+
logs
134+
*.log
135+
npm-debug.log*
136+
yarn-debug.log*
137+
yarn-error.log*
138+
lerna-debug.log*
139+
140+
# Diagnostic reports (https://nodejs.org/api/report.html)
141+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
142+
143+
# Runtime data
144+
pids
145+
*.pid
146+
*.seed
147+
*.pid.lock
148+
149+
# Directory for instrumented libs generated by jscoverage/JSCover
150+
lib-cov
151+
152+
# Coverage directory used by tools like istanbul
153+
coverage
154+
*.lcov
155+
156+
# nyc test coverage
157+
.nyc_output
158+
159+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
160+
.grunt
161+
162+
# Bower dependency directory (https://bower.io/)
163+
bower_components
164+
165+
# node-waf configuration
166+
.lock-wscript
167+
168+
# Compiled binary addons (https://nodejs.org/api/addons.html)
169+
build/Release
170+
171+
# Dependency directories
172+
node_modules/
173+
jspm_packages/
174+
175+
# Snowpack dependency directory (https://snowpack.dev/)
176+
web_modules/
177+
178+
# TypeScript cache
179+
*.tsbuildinfo
180+
181+
# Optional npm cache directory
182+
.npm
183+
184+
# Optional eslint cache
185+
.eslintcache
186+
187+
# Microbundle cache
188+
.rpt2_cache/
189+
.rts2_cache_cjs/
190+
.rts2_cache_es/
191+
.rts2_cache_umd/
192+
193+
# Optional REPL history
194+
.node_repl_history
195+
196+
# Output of 'npm pack'
197+
*.tgz
198+
199+
# Yarn Integrity file
200+
.yarn-integrity
201+
202+
# dotenv environment variables file
203+
.env
204+
.env.test
205+
206+
# parcel-bundler cache (https://parceljs.org/)
207+
.cache
208+
.parcel-cache
209+
210+
# Next.js build output
211+
.next
212+
out
213+
214+
# Nuxt.js build / generate output
215+
.nuxt
216+
dist
217+
218+
# Gatsby files
219+
.cache/
220+
# Comment in the public line in if your project uses Gatsby and not Next.js
221+
# https://nextjs.org/blog/next-9-1#public-directory-support
222+
# public
223+
224+
# vuepress build output
225+
.vuepress/dist
226+
227+
# Serverless directories
228+
.serverless/
229+
230+
# FuseBox cache
231+
.fusebox/
232+
233+
# DynamoDB Local files
234+
.dynamodb/
235+
236+
# TernJS port file
237+
.tern-port
238+
239+
# Stores VSCode versions used for testing VSCode extensions
240+
.vscode-test
241+
242+
# yarn v2
243+
.yarn/cache
244+
.yarn/unplugged
245+
.yarn/build-state.yml
246+
.yarn/install-state.gz
247+
.pnp.*

Pipfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
8+
[packages]
9+
websockets = "*"
10+
11+
[requires]
12+
python_version = "3.8"

Pipfile.lock

Lines changed: 49 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Whitespace-only changes.

index.js

Whitespace-only changes.

index.py

Whitespace-only changes.

index.scss

Whitespace-only changes.

package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "sockets",
3+
"version": "1.0.0",
4+
"main": "index.js",
5+
"repository": "https://github.com/codingforentrepreneurs/Websockets-from-Scratch-with-Python-JavaScript",
6+
"author": "CFE <hello@teamcfe.com>",
7+
"license": "MIT"
8+
}

0 commit comments

Comments
 (0)