Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wazery/kickoff-landing-test
Temporary repository for testing a landing page
https://github.com/wazery/kickoff-landing-test
Last synced: about 1 month ago
JSON representation
Temporary repository for testing a landing page
- Host: GitHub
- URL: https://github.com/wazery/kickoff-landing-test
- Owner: wazery
- License: mit
- Created: 2015-04-14T00:26:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-14T00:34:29.000Z (over 9 years ago)
- Last Synced: 2024-05-10T22:05:46.332Z (6 months ago)
- Language: CSS
- Homepage:
- Size: 176 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
What is this?
=============This is a simple HTML prototype written in HAML or ERB that is designed to be
viewed with Serve.What is Serve? Serve is an open-source rapid prototyping framework for Web
applications. It makes it easy to prototype functionality without writing a
single line of backend code.How do I install and run Serve?
-------------------------------Serve is distributed as a Ruby gem to make it easy to get up and running. You
must have Ruby installed in order to download and use Serve. The Ruby download
page provides instructions for getting Ruby setup on different platforms:After you have Ruby installed, open up the command prompt and type:
gem install serve
(OSX and Unix users may need to prefix the command with `sudo`.)
After Serve is installed, you can start it up in a given directory like this:
serve
This will start Serve on port 4000. You can now view the prototype in your
Web browser at this URL:Compass and Sass
----------------This prototype uses Compass and Sass to generate CSS. Both are distributed as
Ruby gems and can be easily installed from the command prompt. Since the
Compass gem depends on Sass, you can install them both with one command:gem install compass
Learn more about Sass:
Learn more about Compass:
Rack and Passenger
------------------Astute users may notice that this project is also a simple Rack application.
This means that it is easy to deploy it on Passenger or in any other
Rack-friendly environment. Rack it up with the `rackup` command. For more
information about using Serve and Passenger see:Exporting
---------To export your project, use the new "export" command:
serve export project output
Where "project" is the path to the project and "output" is the path to the
directory where you would like your HTML and CSS generated.Learning More
-------------You can learn more about Serve on the GitHub project page: