我从https://github.com/tantaman/Strut
下载了strut编辑器但是在离线模式下,index.html没有加载编辑器。如何打开编辑器? 从app文件夹我运行index.html但它没有显示任何内容
答案 0 :(得分:1)
Strut IO(https://github.com/tantaman/Strut)项目的主页引导我们进入开发/构建部分。
To build your own version of Strut you'll need Grunt v0.4.0 or later.
1. Install the latest Grunt: npm install -g grunt-cli
2. Clone Strut: git clone git://github.com/tantaman/Strut.git
3. cd Strut
4. Install Strut's development dependencies: npm install
5. Run Strut: grunt server (the server runs at localhost:9000)
To make a production build of Strut run grunt build. The resulting build will be located in Strut/dist
答案 1 :(得分:0)
Vadik Smirnov给了你解决方案,但我想他忘了(可能他认为那样)说所有操作都必须在GitHub Shell中执行。
现在按照Vadik Smirnov建议的命令。
答案 2 :(得分:0)
我用strut
创建了一个docker容器。您可以使用以下方式运行它:
docker run -d -p 9000:9000 silgon/strut
然后,您可以使用以下网址在本地主机中访问它:
http://localhost:9000
另外,如果您想查看安装说明,可以按照我的git存储库Dockerfile
上的说明进行操作。