Getting Started
    Why Webcodesk?
    System Requirements
    Install Webcodesk
    Beginner Tutorial
    Bootstrap project
    Review components
    Create main page
    Create sign-in page
    Create sign-up page
    Create initialization flow
    Create main flow
    Create sign-in flow
    Integration with Firebase
    Create sign-up flow
    Build application
    Open source code in IDE
    Open in IntelliJ IDEA
    Source code structure
    How it works?
    Writing source code
    Create React component
    Develop component in isolation
    Create functions
last edited 2019-04-12

The source code structure

The structure of the source code is a bit different from what create-react-app generated.

Here is the file structure you can find in the project:

public/
src/
    app/
    etc/
    usr/
    index.css
    index.js
package.json

Where:

  • app - Webcodesk generates and keeps the application files here: index files, config files for React App Framework, router files, etc.

If you want to understand in details how the app directory is used, take a look at React App Framework description.

  • etc - Webcodesk keeps pages and flows configuration files in this directory

It is strongly recommended to include the etc directory into the control version system.

  • usr - where the source code of the components and functions are
last edited 2019-04-12

The source code structure

The structure of the source code is a bit different from what create-react-app generated.

Here is the file structure you can find in the project:

public/
src/
    app/
    etc/
    usr/
    index.css
    index.js
package.json

Where:

  • app - Webcodesk generates and keeps the application files here: index files, config files for React App Framework, router files, etc.

If you want to understand in details how the app directory is used, take a look at React App Framework description.

  • etc - Webcodesk keeps pages and flows configuration files in this directory

It is strongly recommended to include the etc directory into the control version system.

  • usr - where the source code of the components and functions are