Skip to content

Commit 7f4237f

Browse files
committed
Added a task.
1 parent ee039f7 commit 7f4237f

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
# 2016-web
1+
# PyCon Canada 2016 Website
2+
3+
The source code for [PyCon Canada's 2016 conference website](https://2016.pycon.ca/).
4+
5+
## Development
26

3-
PyCon Canada 2016 website.

fabfile.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from fabric.api import task, env
1+
from fabric.api import task, env, local
22
from fabric.contrib.project import rsync_project
33

44
env.user = 'deploy'
@@ -12,3 +12,8 @@
1212
@task
1313
def deploy():
1414
rsync_project(remote_dir=env.html_dir, local_dir='./comingsoon/')
15+
16+
17+
@task
18+
def freeze():
19+
local('pip freeze > requirements.txt')

0 commit comments

Comments
 (0)