Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 899 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 899 Bytes

Gitoscop

This is a pet project which aimed to promote http://angularjs.org. Feel free to fork, make some changes and learn AngularJS in this way. Endless list of TODOs is always present at index.html :-)

Running Tests

Unit tests: http://127.0.0.1/js/SpecRunner.html
E2E tests: http://127.0.0.1/js/e2eRunner.html

Aye, you need to set up something like Apache httpd to run tests. Example:

<VirtualHost *:80>
    DocumentRoot "/Users/mkotsur/Projects/gitoscop/"
    ServerName 127.0.0.1
    ServerAlias gitoscop.com
    <Directory /Users/mkotsur/Projects/gitoscop/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>
</VirtualHost>