our product is using weex 

weex is a good platform  and  our product is run by it 。 so  we want to add to this app list .
and we hope weex  make a stable version that 28  。because now we are in version .16   。 we try update version .but every version user nor stable . always app broken  and white screen in android phone.。 so we have stay at version .16   .  although there are so many  small bug。 but we have no way.
1 file changed
tree: 5228a13aff72cb5f930bc13e5ad9f094048f1283
  1. docs/
  2. examples/
  3. scripts/
  4. themes/
  5. .gitignore
  6. _config.yml
  7. _config_cn.yml
  8. CODE_OF_CONDUCT.md
  9. DISCLAIMER
  10. LICENSE
  11. NOTICE
  12. package-lock.json
  13. package.json
  14. README.md
README.md

Weex Website

This is the source code of Weex official website.

Develop

Install

First you should install the Node.js, and install dependencies:

npm install

Develop

npm start

It will start a web server at http://localhost:8080. The pages will be updated automatically once you save the corresponding source file.

Package

npm run build

This will generate static files for publishing. The files are located in docs/.vuepress/dist/

Deploy

scripts/publish.sh

Run the above script to deploy the website. This script will add all files in docs/.vuepress/dist/ to asf-site branch, make a git commit and publish to the remote.

After executing, https://weex.apache.org/ will be updated automatically. If you're in China, you will need to wait several hours or one day before the CDN cache refreshing.

The above scripts only works for committers, if you are not a committer, then you don't have the privilege to do the git push.

Contribute

The documents are written in Markdown format located in the docs folder. Feel free to send pull requests!

How to add a blog

To write a blog, edit ‘docs/.vuepress/config.js’.

  • Search ‘blog’ in this file. Edit blog section and add your article filename(without ‘md’ extension) and title.
'/blog/': [['write-a-blog', 'Write a Blog'], ['your-file-name', 'Your article title']]
'/zh/blog/': [['write-a-blog', '写一篇博客'], ['your-file-name', '你的文章标题']]
  • Add your file(with ‘md’ extension) in ‘docs/blog’ and ‘docs/zn/blog’ directories.