Skip to content

Commit ba99332

Browse files
committed
Start to flesh out READMEs
1 parent 901ccef commit ba99332

File tree

4 files changed

+44
-1
lines changed

4 files changed

+44
-1
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
cookiecutter-data-science
22
-------------------------
3+
4+
To start a new project:
5+
6+
cookiecutter [email protected]:drivendata/cookiecutter-data-science.git
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[MASTER]
2+
load-plugins=pylint_common
3+
4+
[FORMAT]
5+
max-line-length=120
6+
7+
[MESSAGES CONTROL]
8+
disable=missing-docstring,invalid-name
9+
10+
[DESIGN]
11+
max-parents=13
+28-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,28 @@
1-
## {{ cookiecutter.repo_name }}
1+
{{cookiecutter.project_name}}
2+
==============================
3+
4+
{{cookiecutter.description}}
5+
6+
Organization
7+
------------
8+
9+
├── data
10+
│   ├── external <- Data from third party sources.
11+
│   ├── interim <- Intermediate data that has been transformed goes.
12+
│   ├── processed <- The final, canonical data sets for modeling.
13+
│   └── raw <- The original, immutable data dump.
14+
15+
├── notebooks <- Jupyter or Beaker notebooks. Naming convention is a number (for ordering),
16+
│ the creator's initials, and a short `-` delimited description, e.g.
17+
│ `1.0-jqp-initial-data-exploration`.
18+
├── references <- Reports, data dictionaries, manuals, and all other explanatory materials.
19+
└── src <- Source code. Possible subdirectories might be `scripts` or `API` for
20+
projects with larger codebases.
21+
22+
Basic Commands
23+
--------------
24+
25+
### Syncing data to S3
26+
27+
* `make sync_data_to_s3` will use `s3cmd` to recursively sync files in `data/` up to `s3://{{ cookiecutter.s3_bucket }}/data/`.
28+
* `make sync_data_from_s3` will use `s3cmd` to recursively sync files from `s3://{{ cookiecutter.s3_bucket }}/data/` to `data/`.

0 commit comments

Comments
 (0)