Giter Site home page Giter Site logo

vidsgr / cookiecutter-django-foundation Goto Github PK

View Code? Open in Web Editor NEW

This project forked from parbhat/cookiecutter-django-foundation

0.0 1.0 0.0 3.81 MB

Fork of Cookiecutter Django based on Zurb Foundation 6.3.0 front-end framework

License: BSD 3-Clause "New" or "Revised" License

Python 54.23% Shell 7.68% JavaScript 3.71% Nginx 0.96% Makefile 3.98% Batchfile 3.62% CSS 12.66% HTML 13.16%

cookiecutter-django-foundation's Introduction

Cookiecutter Django Foundation

Build Status

Updates

Cookiecutter Django Foundation is fork of awesome Cookiecutter Django. Powered by Cookiecutter, Cookiecutter Django is a framework for jumpstarting production-ready Django projects quickly. Cookiecutter Django Foundation uses the Zurb Foundation 6 as the front end framework. This project combines the Cookiecutter Django with the Foundation framework. The project contains a _settings.scss file to easily customize the default styling of the Foundation framework. For example, the default colors can be changed by changing the foundation-palette.

$foundation-palette: (
  primary: #1779ba,
  secondary: #767676,
  success: #3adb76,
  warning: #ffae00,
  alert: #cc4b37,
);

Foundation Django

For more information about Cookiecutter Django

Features

  • For Django 1.10
  • Works with Python 3.4.x or 3.5.x. Python 3.6 is experimental
  • Renders Django projects with 100% starting test coverage
  • Zurb Foundation 6 with an option to customize using SASS variables (100% SASS).
  • 12-Factor based settings via django-environ
  • Compile Sass files using libsass via django-libsass.
  • Django Foundation Formtags to work with Zurb Foundation forms
  • Secure by default. We believe in SSL.
  • Optimized development and production settings
  • Registration via django-allauth
  • Comes with custom user model ready to go
  • Grunt build for compass and livereload
  • Send emails via Anymail (using Mailgun by default, but switchable)
  • Media storage using Amazon S3
  • Docker support using docker-compose for development and production
  • Procfile for deploying to Heroku
  • Instructions for deploying to PythonAnywhere
  • Run tests with unittest or py.test
  • Customizable PostgreSQL version
  • Experimental support for Amazon Elastic Beanstalk

Optional Integrations

These features can be enabled during initial project setup.

  • Serve static files from Amazon S3 or Whitenoise
  • Configuration for Celery
  • Integration with MailHog for local email testing
  • Integration with Sentry for error logging
  • Integration with Opbeat for performance monitoring

Constraints

  • Only maintained 3rd party libraries are used.
  • Uses PostgreSQL everywhere (9.2+)
  • Environment variables for configuration (This won't work with Apache/mod_wsgi except on AWS ELB).

Support this Project!

This project is run by volunteers. Please support them in their efforts to maintain and improve Cookiecutter Django:

Projects that provide financial support to the maintainers:

Two Scoops of Django 1.11

Two Scoops of Django

Two Scoops of Django is the best dairy-themed Django reference in the universe

pyup

pyup

Pyup brings you automated security and dependency updates used by Google and other organizations. Free for open source projects!

Usage

Let's pretend you want to create a Django project called "redditclone". Rather than using startproject and then editing the results to include your name, email, and various configuration issues that always get forgotten until the worst possible moment, get cookiecutter to do all the work.

First, get Cookiecutter. Trust me, it's awesome:

$ pip install "cookiecutter>=1.4.0"

Now run it against this repo:

$ cookiecutter https://github.com/Parbhat/cookiecutter-django-foundation

You'll be prompted for some values. Provide them, then a Django project will be created for you.

Warning: After this point, change 'Daniel Greenfeld', 'pydanny', etc to your own information.

Answer the prompts with your own desired options. For example:

Cloning into 'cookiecutter-django-foundation'...
remote: Counting objects: 8869, done.
remote: Compressing objects: 100% (37/37), done.
remote: Total 8869 (delta 15), reused 0 (delta 0), pack-reused 8832
Receiving objects: 100% (8869/8869), 3.53 MiB | 468.00 KiB/s, done.
Resolving deltas: 100% (5591/5591), done.
Checking connectivity... done.
project_name [Project Name]: Reddit Clone
project_slug [reddit_clone]: reddit
author_name [Daniel Roy Greenfeld]: Daniel Greenfeld
email [[email protected]]: [email protected]
description [A short description of the project.]: A reddit clone.
domain_name [example.com]: myreddit.com
version [0.1.0]: 0.0.1
timezone [UTC]: America/Los_Angeles
use_whitenoise [y]: n
use_celery [n]: y
use_mailhog [n]: n
use_sentry_for_error_reporting [y]: y
use_opbeat [n]: y
use_pycharm [n]: y
windows [n]: n
use_docker [y]: n
use_heroku [n]: y
Select postgresql_version:
1 - 9.5
2 - 9.4
3 - 9.3
4 - 9.2
Choose from 1, 2, 3, 4 [1]: 1
Select js_task_runner:
1 - Gulp
2 - Grunt
3 - None
Choose from 1, 2, 3 [1]: 1
use_lets_encrypt [n]: n
Select open_source_license:
1 - MIT
2 - BSD
3 - GPLv3
4 - Apache Software License 2.0
5 - Not open source
Choose from 1, 2, 3, 4, 5 [1]: 1
use_elasticbeanstalk_experimental: n

Enter the project and take a look around:

$ cd reddit/
$ ls

Create a git repo and push it there:

$ git init
$ git add .
$ git commit -m "first awesome commit"
$ git remote add origin [email protected]:pydanny/redditclone.git
$ git push -u origin master

Now take a look at your repo. Don't forget to carefully look at the generated README. Awesome, right?

For local development, see the following:

Modify the default styles of Foundation

The projects generated with this cookiecutter include a settings file, named _settings.scss. You can find the settings file under <project_slug>/static/sass.

Every component includes a set of variables that modify core structural or visual styles. If there's something you can't customize with a variable, you can just write your own CSS to add it.

Here's an example set of settings variables. These change the default styling of buttons:

// Default padding for button.
$button-padding: 0.85em 1em !default;

// Default margin for button.
$button-margin: 0 $global-padding $global-padding 0 !default;

// Default fill for button. Is either solid or hollow.
$button-fill: solid !default;

// Default background color for button.
$button-background: $primary-color !default;

// Default hover background color for button.
$button-background-hover: scale-color($button-background, $lightness: -15%) !default;

// Default font color for button.
$button-font-color: #fff !default;

// Default alternative font color for button.
$button-font-color-alt: #000 !default;

// Default radius for button.
$button-radius: 0 !default;

// Default sizes for button.
$button-sizes: (
  tiny: 0.7,
  small: 0.8,
  medium: 1,
  large: 1.3,
) !default;

// Default font size for button.
$button-font-size: 0.9rem !default;

// Default opacity for a disabled button.
$button-opacity-disabled: 0.25 !default;

Contributing

Contributions are always welcome to improve this project. If you think you've found a bug or are interested in contributing fork this project and send the pull request. After review, your pull request will be merged. We are always happy to receive pull requests. If you identify any issue, please raise it in the issues section.

cookiecutter-django-foundation's People

Contributors

aeikenberry avatar alb3rto269 avatar ashwoods avatar audreyfeldroy avatar bogdal avatar bouke avatar burhan avatar chrisfranklin avatar crdoconnor avatar eraldo avatar hackebrot avatar hjwp avatar jangeador avatar jayfk avatar kappataumu avatar kevgathuku avatar keybits avatar luzfcb avatar mjsisley avatar noisy avatar parbhat avatar phyxsius avatar pydanny avatar pyup-bot avatar requires avatar theskumar avatar toffer avatar webyneter avatar xpostudio4 avatar yunti avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.