Skip to content

Commit

Permalink
initialized repository
Browse files Browse the repository at this point in the history
  • Loading branch information
williamjesusdev committed Mar 12, 2020
0 parents commit 281cac4
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
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
62 changes: 62 additions & 0 deletions README.md
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
15 changes: 15 additions & 0 deletions package.json
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"
}
}

0 comments on commit 281cac4

Please sign in to comment.