Skip to content

Commit f666d0a

Browse files
committed
Refactored to use pipenv
- initial dev2019 meta-project setup - refactored to use pipenv - removed scripts for installs that should be handled by SaltStack
1 parent 3df19fb commit f666d0a

13 files changed

+800
-312
lines changed

.gitignore

+12-52
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,17 @@
1-
cc-wp-theme
2-
vendor
3-
composer.phar
4-
python_env/bin
5-
!python_env/bin/ccengine.fcgi.in
6-
python_env/build
7-
python_env/include
8-
python_env/lib
9-
python_env/local
10-
python_env/paste_errors.log
11-
python_env/.Python
12-
python_env/src/
13-
docroot/license.rdf
1+
# symantic web symlinks
2+
docroot/cc.licenserdf
143
docroot/license_rdf
154
docroot/rdf
16-
docroot/wp-content/
17-
docroot/wordpress/
18-
#docroot/sitemap.*
19-
docroot/wp-config-local.php
20-
vendor/*# -*- mode: gitignore; -*-
21-
*~
22-
\#*\#
23-
/.emacs.desktop
24-
/.emacs.desktop.lock
25-
*.elc
26-
#*.apk
27-
*.exe
28-
*.dmg
29-
auto-save-list
30-
tramp
31-
.\#*
32-
*.swp
33-
34-
# Org-mode
35-
.org-id-locations
36-
*_archive
37-
38-
# flymake-mode
39-
*_flymake.*
40-
41-
# eshell files
42-
/eshell/history
43-
/eshell/lastdir
445

45-
# elpa packages
46-
/elpa/
6+
# repositories
7+
python_src/cc.engine/
8+
python_src/cc.i18n/
9+
python_src/cc.license/
10+
python_src/cc.licenserdf/
11+
python_src/rdfadict/
4712

48-
# reftex files
49-
*.rel
13+
# transstats.csv symlink
14+
transstats.csv
5015

51-
# AUCTeX auto folder
52-
/auto/
53-
54-
# apitest
55-
/apitest/node_modules
56-
57-
.DS_Store
16+
# vim
17+
*.swp

.venv/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Pipfile

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
8+
[packages]
9+
[packages."cc.engine"]
10+
editable = true
11+
path = "python_src/cc.engine"
12+
[packages."cc.i18n"]
13+
editable = true
14+
path = "python_src/cc.i18n"
15+
[packages."cc.license"]
16+
editable = true
17+
path = "python_src/cc.license"
18+
[packages."cc.licenserdf"]
19+
editable = true
20+
path = "python_src/cc.licenserdf"
21+
[packages.future]
22+
[packages.rdfadict]
23+
editable = true
24+
path = "python_src/rdfadict"
25+
26+
[requires]
27+
python_version = "2.7"

0 commit comments

Comments
 (0)