Skip to content

Commit 0e1c76b

Browse files
author
Tim Anema
committed
A few touched to make it easier to get started
1 parent 624ef21 commit 0e1c76b

File tree

4 files changed

+50
-32
lines changed

4 files changed

+50
-32
lines changed

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.8.1

Pipfile.lock

+31-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,18 @@ for the next steps
3131
### Run the App
3232

3333
Run the following commands in the repo. We use [pipenv](https://github.com/pypa/pipenv) to get running faster
34+
35+
- create a `.env` file in the root directory of this app
36+
- Add to it
37+
```
38+
SHOPIFY_API_KEY=[your api_key]
39+
SHOPIFY_API_SECRET=[your api_secret]
40+
DJANGO_SECRET="a secret string that only you know"
41+
```
42+
- run the app
3443
```
3544
pipenv install
36-
SHOPIFY_API_KEY=[key] SHOPIFY_API_SECRET=[secret] pipenv run python manage.py runserver
45+
pipenv run python manage.py runserver
3746
```
3847

3948
You may get warnings about migrations, but they should not stop you.

requirements.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
asgiref==3.2.10
2+
Django==3.0.8
3+
pyactiveresource==2.2.1
4+
pytz==2020.1
5+
PyYAML==5.3.1
6+
ShopifyAPI==8.0.1
7+
six==1.15.0
8+
sqlparse==0.3.1

0 commit comments

Comments
 (0)