https://github.com/zk/nsfw-starter
https://github.com/zk/nsfw-starter
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zk/nsfw-starter
- Owner: zk
- Created: 2013-08-12T04:07:56.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-08-23T05:15:44.000Z (over 12 years ago)
- Last Synced: 2025-04-01T17:28:19.454Z (9 months ago)
- Language: Clojure
- Size: 379 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nsfw-starter
A template for NSFW webapps.
## Getting Started
Welcome to the NSFW Starter Kit. To get started you'll have to install:
* Leiningen -- https://github.com/technomancy/leiningen
* Sass -- http://sass-lang.com/
* Foreman -- https://github.com/ddollar/foreman
* Heroku Toolbelt, required for deploy to Heroku (duh).
-- https://toolbelt.heroku.com/
Next, clone this repo
```bash
git clone https://github.com/zk/nsfw-starter
cd
bin/dev
```
Then open up at browser at http://localhost:5000
Don't forget to modify this README with your app specific info.
To deploy to Heroku:
```
heroku create
git push heroku master
```
Your 1st deploy to Heroku takes a while, subsequent deploys will be much quicker.
## Dev
Run `bin/dev` to start (allthethings)
## Launch Checklist
* 404 / 500 pages (see `resources/public/(404|500).html`)
## Working on This Repo
* Use feature branches
* Open PRs from feature branches
* Run tests before merging feature branch into master
* `git merge --squash `
https://sandofsky.com/blog/git-workflow.html