Skip to content

sunlight0928/sellscale-frontend

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Supercharge your outbound with AI



Table of Contents

  1. SellScale App Overview
  2. Development
    1. Overview
    2. Installation & Local Set Up
    3. Making Changes
  3. Other

SellScale App Overview

SellScale App is a React app that primarily uses the Mantine component library and Tailwind. We also use Jest for unit testing, lodash as our main functional utility library, tabler for our icons, and recoil as our global state management solution.

This app is our primary resource for customers to interact with our systems, such as:

  • import prospects from CSVs
  • view prospect statuses
  • write notes on prospects
  • create personas and manage CTAs
  • check up on their campaigns ... and more

Development

Overview

The source directory is as follows

- public
  (for non-transpiled static files, mainly SEO stuff)
- src
    - assets
    (for images, fonts, etc)
    - auth
    (for user authentication code)
    - components
    (for React components, where most of the code is)
    - constants
    (for static values/variables)
    - utils
    (for library and utility code)
- __tests__
    - category 1
        - test1.js
        - test2.js
    - category 2
        - ...
    - ...

This structure keeps our code clean and ensures we know where to find unit tests easily.

Installation & Local Set Up

If setting up from a fresh machine, make sure you have the following installed before continuing:

The following steps assume that you have the above prerequisites installed - any necessary installations should be added to the list above.

  1. Install the dependancies (in the future, we shouldn't need --force)

    npm i --force
    
  2. Create a .env file and paste the following example. Ensure that the REACT_APP_API_URI points to your locally running the API.

    REACT_APP_API_URI=http://localhost:5000
    
  3. To start the app, run the following

    npm start
    
  4. Make sure that everything is setup but running some unit tests.

  • Run Unit Tests: Run all the unit tests by typing npm test. There should not be any failures.

Making Changes

In general, when making changes, follow these guidelines:

  1. Make a new branch:
<YOUR_NAME>_<YEAR-MONTH-DAY>_<DESCRIPTION-SEPARATED-BY-HYPHENS>

Examples would be aakash_2023-01-01_adding-delete-api-for-prospects or david_2023-01-02_generate-new-hash-keys

  1. Check out the new branch, and make your feature changes. INCLUDE DOC

  2. Add unit tests! (Do not forget to add unit tests!)

  3. Run all unit tests locally. If everything passes, push to branch.

  4. Get a peer review from a fellow engineer and have them 'check it off'

  5. Verify your Pull Request in Github. If things look good, merge into Master (and it will automatically deploy via our Render pipeline)

Other

None for now

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 99.9%
  • Other 0.1%