forked from hadrienl/yoshioka.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
executable file
·37 lines (23 loc) · 854 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
yoshioka.js is javascript --MVC-- MVVM framework for client-side webapp based on YUI 3.
some text
REQUIREMENT
Development environment :
- node 0.6.2
- less (via npm)
- JRE (for yuicompressor)
Production environment :
- Quick static web server
USE
- create a new folder for your project, then init a git repository :
$ mkdir mywebapp
$ cd mywebapp
$ git init
- add git submodule into your app
$ git submodule add git://github.com/hadrienl/yoshioka.js.git
- Launch the server
$ node yoshioka.js
- You can see all the available commands by typing `help` but the first thing to do is to create a new app. Type `install` !
Then, point your browser to http://yourserverip:1636
WORKAROUND
- On Mac OS X, you can have a `Error: EMFILE, too many open files` error. Type this command to resolve the problem :
$ ulimit -n 8192