Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/melindrea/pyladies-sthlm
Setup of generators to build our own site
https://github.com/melindrea/pyladies-sthlm
Last synced: 22 days ago
JSON representation
Setup of generators to build our own site
- Host: GitHub
- URL: https://github.com/melindrea/pyladies-sthlm
- Owner: Melindrea
- License: mit
- Created: 2013-10-01T08:58:25.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-01T13:36:22.000Z (over 11 years ago)
- Last Synced: 2024-10-26T02:27:51.115Z (2 months ago)
- Size: 176 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PyLadies Sthlm
==========From within sthlm/
```
pip install -r requirements.txt
npm install && bower install && bundle install
mynt gen -f www _site #or...
grunt build
```Requirements:
* Your machine needs to be [setup for Python](http://newcoder.io/begin/setup-your-machine/)
* Create the virtual environment PyLadies `mkvirtualenv PyLadies`
* To develop you need to have [GruntJS](http://gruntjs.com) and [Bower](http://bower.io)
* You also need to have [Ruby](https://www.ruby-lang.org/en/) to be able to compile the [Sassy CSS](http://sass-lang.com/) into actual CSS
* To add content you just need to know [Markdown](http://daringfireball.net/projects/markdown/) and [Mynt](http://mynt.mirroredwhite.com/)```
source /usr/local/bin/virtualenvwrapper.sh #really needs to be fixed...
mkvirtualenv PyLadies # If not created
workon PyLadies```