Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project Overview: General Work Process, Dev Environment and Structure #300

Open
dongwon8247 opened this issue Dec 6, 2023 · 0 comments
Open
Assignees
Labels
documentation Improvements or additions to documentation

Comments

@dongwon8247
Copy link
Member

dongwon8247 commented Dec 6, 2023

Work Process

1. Planning Phase (Notion)

  • Ideation & Research
  • Roadmap for new features/improvements
  • Wireframes
  • Functional specification
  • Information Architecture (IA)
  • Versioning suggestion

When planning is done, request for design.

2. Design Phase (Figma)

  • Design components
  • Design UI/Flow
  • Many Iterations

When the design is done, request for development.

3. Development Phase (Jira & GitHub)

  • Analyze the requested features/bugs and assign them to appropriate persons
  • Run a two-week sprint, with the aim of releasing a new version every month
  • Synchronize Jira issue cards with GitHub commits for better tracking & review process
  • Manage the Adena Developer Docs

When development is done, ready for release. For the release process, go to: #301

Dev Environment & Structure

Stack

  • Typescript: 4+
  • React: 18.2
  • yarn: 3.4.1 (yarn workspace)

Test Tools

  • jest
  • storybook

CI/CD

  • GitHub Actions
  • AWS S3 (Storage for build files)

Build

  • Build
$ yarn set version berry
$ yarn
$ yarn build
  • Run
$ yarn set version berry
$ yarn
$ yarn build:module
$ yarn develop

Structure

adena-wallet
├── packages
│   ├── adena-extension // Adena Wallet extension
│   │   └── src
│   │       ├── assets // Assets, svg, png ...
│   │       ├── common // Common modules
│   │       ├── components // UI components
│   │       ├── containers // Data handles
│   │       ├── hooks // Hooks
│   │       ├── inject // Injection script
│   │       ├── layouts // UI layouts
│   │       ├── migrates // Storage data migration 
│   │       ├── models // Data interface
│   │       ├── pages // Pages
│   │       ├── repositories // Data input/output
│   │       ├── resources // Resource data
│   │       ├── services // Service logic
│   │       ├── states // Recoil state variables
│   │       └── types // External interface
│   │
│   ├── adena-module // Wallet/account management module
│   │   └── src
│   │       ├── crypto 
│   │       ├── encoding 
│   │       ├── math 
│   │       ├── transaction
│   │       ├── utils
│   │       └── wallet 
│   └── adena-torus-signin // MPC Google Login module 
│
└── scripts // Build scripts
@dongwon8247 dongwon8247 added the documentation Improvements or additions to documentation label Dec 6, 2023
@dongwon8247 dongwon8247 changed the title Adena Project Overview Project Overview: Work Process, Environment and Structure Dec 6, 2023
@dongwon8247 dongwon8247 changed the title Project Overview: Work Process, Environment and Structure Project Overview: General Work Process, Dev Environment and Structure Dec 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

3 participants