AiiDAlab Team
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Sharing URL Help
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee
  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    # Definition of AiiDAlab release and its hands-on The AiiDAlab in general definition is not a single tool but an infrustructure contains multiple componets. It is run or deployed on an tengible machine. We don't have a version tag for AiiDAlab specificly which cause the problem that it is hard to measure the progress of development. All base dependencies have their version tag and developed incrementally. Once there are breaking features or important fixes, we shouldn't wait and postpone the release of the new version. ## Base dependencies Defined in https://github.com/aiidalab/aiidalab-docker-stack/blob/main/build.json, the full-stack which we used for all production deployment and as the default stack of aiidalab-launch, contain the base dependencies that when new version relesae, the `aiidalab-docker-stack` required version bump with the corresponding package version bump. These dependencies are: - aiida-core will influent the plugin compatibilities, the frequencies are 2~3 months and we only follow the update of: - the minor version update - the patch version bumper with crucial bugfix that cause server issue to AiiDAlab ecosystem. (See the real-world example we just encountered: https://github.com/aiidalab/aiidalab-docker-stack/pull/362) - aiidalab which contain the tools for app management and for app register. I personally think this show not be in the list but the version is deduct from `aiidalab-home`. - `aiidalab-home` is the app that not provide the app entry point in the index page but ensential for the tools show in the index page and also the app management widgets. - python version showed be less aggressive to keep the most tested version. To bring the new features of programing without bring burden to developers. The princeple is following the python version of `aiida-core`, and use the second latest version defined in `aiida-core`. For example, when `3.11` is supported by `aiida-core`, we then start to support `3.10` for aiidalab ecosystem. - pgsql version bump require involving with the database migrate which influence all users in all deployment include also the localhost container running. Therefore, we need to conservative to update this version. (Every year we have a discussion.) But the migration will be much easier if we have the home tool to allow user to migrate by themself, thanks to @yakutovicha work on database migration. All version bump of the packages above will eventually lead to the version update of the `aiidalab-docker-stack`. (TBD) the version of aiidalab and aiidalab-home is later introduced to the `build.json` file. It means if as defined above, we keep the aiidalab-home in the list, we better to have a tag for it as well. This is a good practice in my opinion. Because the backend python version and aiida-core version are more reveal in background which means users have no intuitive feeling how the AiiDAlab is changing. But the aiidalab-home have potential to bring new layout, new tools to the index page which will be highlight for the updates. ## Production deployments The new release of the aiidalab-docker-stack will create new docker stacks to be used in deployments. We now have following core maintained deployments that required to having either the stable deployment for users running production and robust calculation or the edge deployment where we want to have all the edge features. The edge deployment is very important for us to show the progress quickly to the project reviews. It also enssential for developers to have an integrated pack of packges to run and test the edge features. - aiidalab.materialscloud.net (Production, need to be robust and conservativly update) - dev-aiidalab.materialscloud.net (staging, edge deployment and used to display the newest feature to public). It is currently deployed by ansible, we plan to using the standard z2jh k8s deployment with the help from CSCS. - theospc7.epfl.ch (THEOS AiiDAlab test server, staging and the QeApp is the essential to be the latest) - dev-aiidalab.psi.ch (psi server, which is for test purpose at the moment.) - localhost running through `aiidalab-launch`, need to have latest image supported and backward for running the old images (Now, we support to run `aiidalab/aiidalab-docker-stack` images.). ## The definition of AiiDAlab relase Based on time, just like ubuntu version 23-04, 24-10 for next two releases. The AiiDAlab team can keep its own pace on making the progress and anouncement. However, we have encountered the issue that to support the AiiDA 2.x we delay a lot for having the release annouce since plenty of unexpected issues appread and achitecture of docker stacks cahnges. Now we introduce the concept of core dependencies, which is designed for apps that if the core dependencies are not meet, the app manager will prevent it from installing. This relieve the issuet that the core developers need to coordinates with app developers to wait the new app support. Meanwhile the empty list of the app is a very good reminder for app developers to priorities there work on support the new AiiDAlab. At the moment, we only have `aiida-core` in the core dependencies. Which means that once the app support the aiida-core version of new AiiDAlab, the app will have the newly supported version show in the app manager. ## The break design change and important AWB interface change This can always go in slow but stady pace and make the anouncement in half year base... The problem is the breaking changes are hard to measure the working load since sometime the changes tangle in between varias core packages. ## Misc note for AiiDAlab 2.0 official release Things need to be done: - aiidalab-widget-base remove from aiidalab appstore. - AWB official version released - AWB tools move to aiidalab-home - AWB interface compatible between widgets. ## Some notes on QeApp release During a lunchtime discussion with Xing, we agreed that we should strategically release QeApp. I acknowledged that I have been responsible for releasing many versions that were not robust, and we concluded that rather than releasing QeApp on a monthly basis, we should aim to release two promising versions every year. To implement this plan, we will use the [calendar versioning semantic](https://calver.org/) that we have used for QeApp thus far. Specifically, we will release versions in April and October of each year, with the version numbers following the format [YEAR].04.xx and [YEAR].10.xx. To ensure that the upcoming releases are well-planned, we will document new big features on a wiki page, and all bug fixes will go to the patched version of the latest published release. The principle behind this approach is that new features will only go into upcoming releases, while bug fixes will focus on the published release. This approach offers several advantages. First, we can continue working on new features without breaking the in-use release. Second, it will help trim down the list shown in the app manager so that users can easily see what they have installed (though this will require additional work on the app register filter to allow for the display of the latest patch of releases). Third, the new features will be foreseeable and tracked. Finally, the current release will become more robust and will not break any workflows, allowing reviewers (from MARVEL or Nicola M.) to use it at any time without issue. However, it is not entirely clear how we will manage the branches to support this approach. We will need to maintain two branches - one for published release support and one for upcoming releases. Although it is normal to find and fix trivial bugs during new feature implementation, separating out such bugs to the released supported branch will increase our workload by requiring another pull request. It will also make it harder to quickly complete new features. Furthermore, when it comes time to merge the branches for the new release, it will be quite challenging. We do not want to treat QeApp as a large project, as it is ultimately an AiiDAlab app consisting only of GUI wrappers for some workflows. This is why we have opted for calendar versioning to encourage frequent development iterations. If we need to focus on cherry-picking commits and supporting two branches, it could potentially slow down our development pace.

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully