Skip to content

Commit

Permalink
Open release
Browse files Browse the repository at this point in the history
  • Loading branch information
juokaz committed Jan 12, 2015
0 parents commit 1ff5545
Show file tree
Hide file tree
Showing 180 changed files with 64,203 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.pyc
venv
*~
.DS_Store
*.swp
.vagrant
example.db

.webassets-cache
packed.*
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Better way to publish your slides

This project is trying to improve on the developments of both Slideshare and Speakerdeck, they both seem to be lacking in functionality a speaker would expect to have and also doesn't seem to be improving much lately. Thus this.
15 changes: 15 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Vagrant::Config.run do |config|
config.vm.box = "quantal"
config.vm.box_url = "http://cloud-images.ubuntu.com/quantal/current/quantal-server-cloudimg-vagrant-amd64-disk1.box"

config.vm.provision :puppet do |puppet|
puppet.manifests_path = "manifests"
puppet.manifest_file = "dev.pp"
end

config.vm.network :hostonly, "33.33.33.10"

config.vm.share_folder "www", "/var/www", "./", :nfs => true

config.vm.customize ["modifyvm", :id, "--memory", 1024]
end
1 change: 1 addition & 0 deletions convert/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
Loading

0 comments on commit 1ff5545

Please sign in to comment.