You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
analuizaff bc2bc1a0ab navigate to 'home' after form submission 4 years ago
src navigate to 'home' after form submission 4 years ago
.gitignore Update gitignore and deps 4 years ago
LICENSE Initial commit 4 years ago
README.md Updating README for testing tutorial 4 years ago

README.md

WPD-MobileApp

This project contains the components developed for a mobile app within the Waterproofing Data Project - WPD-WP6.

Tech stack

Folder Structure Convention

Folder structure options and naming conventions for this project

Directory layout

.
├── LICENSE                                         # License description file
├── README.md                                       # Readme description file
└── src                                             # source files
    ├── App.js                                      # app initial file
    ├── app                                         # app custom folders and files
    │   ├── assets                                  # assets folder (images and static)
    │   ├── components                              # basic components folder
    │   ├── config                                  # common config files
    │   ├── hooks                                   # custom hooks
    │   ├── navigation                              # navigation files and routes
    │   └── screens                                 # screen files
    ├── app.json
    ├── babel.config.js
    ├── package-lock.json
    ├── package.json
    ├── web-build
    │   └── register-service-worker.js
    └── yarn.lock

Setting up

$ git clone https://github.com/IGSD-UoW/WPD-MobileApp.git
$ cd WPD-MobileApp/src
$ npm install

Running

$ cd WPD-MobileApp/src
$ npm start

Running unit tests with Jest

$ cd WPD-MobileApp/src
$ npm run test