Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/GeoNode/geonode.github.com
GeoNode's Website
https://github.com/GeoNode/geonode.github.com
Last synced: 3 months ago
JSON representation
GeoNode's Website
- Host: GitHub
- URL: https://github.com/GeoNode/geonode.github.com
- Owner: GeoNode
- Created: 2012-08-23T00:17:41.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-07-19T15:43:22.000Z (4 months ago)
- Last Synced: 2024-07-27T19:44:11.886Z (4 months ago)
- Language: HTML
- Homepage: http://geonode.org
- Size: 116 MB
- Stars: 12
- Watchers: 41
- Forks: 58
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# geonode.org
Prerequisites
-------------
sudo apt-get install ruby-full build-essential zlib1g-dev
echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
gem install bundler
bundle installWorkflow
--------# edit content
bundle exec jekyll serve # default port is 4000, set explicitly with -P
# view at http://localhost:4000
# adding blogposts
cd _drafts
vi newpost.md
# make sure to set the following YAML front matter:
# layout: base
#
# preview with `jekyll build --drafts` or `jekyll serve --drafts` and draft will show up as latest post
# when you are ready to publish:
# - rename the file as per the current YYYY-MM-DD
git mv _drafts/newpost.md _posts/YYYY-MM-DD-newpost.md
vi _posts/YYYY-MM-DD-newpost.md
# commit and push
bundle exec jekyll build
git commit -m 'publish article'
git push origin master