blob: b3a2cad20080028efeb382ad07ded97100ae15ef [file] [log] [blame]
Sergiusz Bazanski902d8602019-07-18 17:05:26 +02001py_library(
2 name = "app",
3 srcs = glob(["djtest/**/*.py"]),
4 deps = [
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +02005 "@pydeps//django",
Sergiusz Bazanski902d8602019-07-18 17:05:26 +02006 ],
7)
8
9py_binary(
10 name = "manage",
11 srcs = ["manage.py"],
12 deps = [
13 ":app",
14 ],
15)
16
17py_binary(
18 name = "uwsgi-start",
19 srcs = ["uwsgi-start.py"],
20 deps = [
21 ":app",
22 "@bazel_tools//tools/python/runfiles",
23 ],
24 data = [
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +020025 '@pip__uWSGI_2_0_18_cp36_cp36m_linux_x86_64//scripts:uwsgi',
Sergiusz Bazanski902d8602019-07-18 17:05:26 +020026 ],
27)