-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #444 from mimischi/webpack
Add webpack for frontend needs
- Loading branch information
Showing
206 changed files
with
4,839 additions
and
13,271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,42 @@ | ||
### OSX ### | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
### SublimeText ### | ||
# cache files for sublime text | ||
*.tmlanguage.cache | ||
*.tmPreferences.cache | ||
*.stTheme.cache | ||
|
||
# workspace files are user-specific | ||
*.sublime-workspace | ||
|
||
# project files should be checked into the repository, unless a significant | ||
# proportion of contributors will probably not be using SublimeText | ||
# *.sublime-project | ||
|
||
# sftp configuration file | ||
sftp-config.json | ||
|
||
# Basics | ||
*.py[cod] | ||
__pycache__ | ||
|
||
# Logs | ||
*.log | ||
pip-log.txt | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
.tox | ||
nosetests.xml | ||
htmlcov | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Pycharm | ||
.idea/* | ||
|
||
# Provided default Pycharm Run/Debug Configurations should be tracked by git | ||
# In case of local modifications made by Pycharm, use update-index command | ||
# for each changed file, like this: | ||
# git update-index --assume-unchanged .idea/clocktest.iml | ||
!.idea/runConfigurations/ | ||
!.idea/clocktest.iml | ||
!.idea/vcs.xml | ||
!.idea/webResources.xml | ||
|
||
# Vim | ||
*~ | ||
*.swp | ||
*.swo | ||
|
||
# npm | ||
node_modules/ | ||
assets/bundles/ | ||
assets/dist/ | ||
|
||
# yarn | ||
.yarn_cache/* | ||
!.yarn_cache/.gitkeep | ||
|
||
# Compass | ||
.sass-cache | ||
# webpack | ||
webpack-stats-local.json | ||
webpack-stats-prod.json | ||
|
||
# virtual environments | ||
.env | ||
|
||
# User-uploaded media | ||
clocktest/media/ | ||
|
||
# Hitch directory | ||
tests/.hitch | ||
|
||
# MailHog binary | ||
mailhog | ||
|
||
# Cache folder | ||
# Cache | ||
.cache/ | ||
|
||
# Initial data | ||
initial_*.json | ||
# OSX | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,11 @@ env: | |
|
||
cache: | ||
apt: true | ||
yarn: true | ||
directories: | ||
- $HOME/.cache/pip | ||
- node_modules | ||
|
||
|
||
install: | ||
- make | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
init: | ||
pip install pipenv --upgrade | ||
pipenv install --dev --skip-lock | ||
yarn install --dev | ||
yarn build | ||
ci: | ||
pipenv run pytest --cov=./ | ||
build: | ||
docker-compose build | ||
rebuild: | ||
docker-compose build --force-rm --no-cache | ||
lang-make: | ||
pipenv run python manage.py makemessages --no-location --no-wrap | ||
lang-compile: | ||
pipenv run python manage.py compilemessages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.