-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 281cac4
Showing
3 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# OSX | ||
# | ||
.DS_Store | ||
|
||
# Node | ||
# | ||
*/node_modules/ | ||
*/npm-debug.log | ||
*/yarn-error.log | ||
|
||
# React | ||
# | ||
*/build | ||
|
||
# Expo | ||
*/expo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Semanas OmniStack - 07 a 10 | ||
|
||
Prometo continuar adicionando novos projetos da Semana OmniStack assim como tambem adicionar os antigos que ainda não coloquei. | ||
|
||
## Indice | ||
[TOC] | ||
|
||
## Diretórios | ||
|
||
- [Semana 07](./InstaRocket) | ||
- [Semana 08](./TinDev) | ||
- [Semana 09](./AirCnC) | ||
- [Semana 10](./DevRadar) | ||
|
||
## Dependências | ||
|
||
Iniciais: `NodeJS version: ^10.3 + NPM version: ^6.0 | Yarn version: ^1.19` | ||
Desenvolvimento: `ReactJS version: ^16.1 + ReactNative version: ^0.60 | Expo version: ^0.19` | ||
|
||
## Iniciando o Projeto | ||
|
||
Primeiro é preciso clonar esse repositório. | ||
|
||
```bash | ||
$ git clone https://github.com/WilliamJesusDev/OmniStack.git | ||
$ cd OmniStack | ||
``` | ||
|
||
### Instalando | ||
|
||
Na raiz do projeto é possivel forma automatizada instalar todas as dependencias utilizando `yarn` ou `npm` | ||
|
||
```bash | ||
$ yarn run:yarn | ||
|
||
$ npm run:npm | ||
``` | ||
|
||
### Iniciando o Servidor | ||
|
||
Ainda na raiz do projeto é possivel iniciar os projetos ***(back e web)*** | ||
utilizando `yarn` ou `npm` | ||
|
||
```bash | ||
$ yarn instarocket || aircnc || tindev || devradar | ||
|
||
$ npm instarocket || aircnc || tindev || devradar | ||
``` | ||
|
||
## Implementações Futuras | ||
|
||
Ainda voltarei a add novas funcionalidades nesse repositório, dentre elas: | ||
|
||
* Semanas Anteriores | ||
* Semana OmniStack 11.0 | ||
* Disponibilização de cada API | ||
* Disponibilização de cada WEB (Deploy) | ||
* Disponibilização de cada MOBILE (update with EXPO) | ||
* Projeto unindo todas as funcionalidades | ||
* Deploy desse projeto | ||
|
||
### END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "semanas_omnistack", | ||
"version": "1.0.0", | ||
"repository": "https://github.com/WilliamJesusDev/OmniStack.git", | ||
"author": "William Jesus <williamjesusti@gmail.com>", | ||
"license": "MIT", | ||
"scripts": { | ||
"run:yarn": "cd InstaRocket && yarn install:yarn && cd ../AirCnC && yarn install:yarn && cd ../DevRadar && yarn install:yarn && cd ../TinDev && yarn install:yarn", | ||
"run:npm": "cd InstaRocket && npm run install:npm && cd ../AirCnC && npm run install:npm && cd ../DevRadar && npm run install:npm && cd ../TinDev && npm run install:npm", | ||
"instarocket": "cd InstaRocket && npm run start", | ||
"aircnc": "cd AirCnC && npm run start", | ||
"tindev": "cd TinDev && npm run start", | ||
"devradar": "cd DevRadar && npm run start" | ||
} | ||
} |