Skip to content

Commit 749730c

Browse files
committed
First commit
0 parents  commit 749730c

File tree

9 files changed

+7504
-0
lines changed

9 files changed

+7504
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.env
3+
dist/server.bundle.js

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# GraphQL 101
2+
3+
Repositorio para el Facebook LIVE de la comunidad de javvascript Nicaragua (03/07/2020).
4+
5+
## Presentacion
6+
7+
[Link de la presentacion](https://prezi.com/view/weVhnHERi7Lb7Jz4kbcG/)
8+
9+
10+
## Instalacion
11+
12+
* Clone the repo
13+
```git clone https://github.com/js-ni/graphql101.git```
14+
15+
* Enter the repo directory
16+
```cd graphql101```
17+
18+
* Install the dependencies
19+
```npm install```
20+
21+
* Create a .env file with the following set up. (examples in parentheses)
22+
23+
```
24+
NODE_ENV = string (development || production)
25+
PORT = int (4000)
26+
```
27+
28+
* Finally, just run ```npm run dev``` for development, or ```npm run build``` for webpack, or ```npm start``` (once built) to run production
29+
30+
## Contributing
31+
32+
Sientanse libres de submitir sus PR. Por el momento no hay un template de contribucion.
33+
34+
## Autor
35+
36+
<!-- prettier-ignore -->
37+
<table><tr><td align="center"><a href="http://victorstein.github.io"><img src="https://avatars3.githubusercontent.com/u/11080740?v=3" width="100px;" /><br /><sub><b>Alfonso Gomez</b></sub></a><br /><a href="#question" title="Answering Questions">💬</a> <a href="#" title="Documentation">📖</a><a href="#tool" title="Tools">🔧</a> <a href="#review" title="Reviewed Pull Requests">👀</a> <a href="#maintenance" title="Maintenance">😎</a></td></table>
38+
39+
## License
40+
41+
This project is licensed under the ISC License

dist/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)