-
- Downloads
finish base
parents
No related branches found
No related tags found
Showing
- .gitignore 7 additions, 0 deletions.gitignore
- LICENSE 661 additions, 0 deletionsLICENSE
- Makefile 48 additions, 0 deletionsMakefile
- README.md 3 additions, 0 deletionsREADME.md
- env.example 3 additions, 0 deletionsenv.example
- manage.py 22 additions, 0 deletionsmanage.py
- package.json 23 additions, 0 deletionspackage.json
- projectname/__init__.py 0 additions, 0 deletionsprojectname/__init__.py
- projectname/asgi.py 16 additions, 0 deletionsprojectname/asgi.py
- projectname/settings/base.py 136 additions, 0 deletionsprojectname/settings/base.py
- projectname/settings/dev.py 10 additions, 0 deletionsprojectname/settings/dev.py
- projectname/urls.py 21 additions, 0 deletionsprojectname/urls.py
- projectname/wsgi.py 16 additions, 0 deletionsprojectname/wsgi.py
- requirements/base.txt 6 additions, 0 deletionsrequirements/base.txt
- shared/__init__.py 0 additions, 0 deletionsshared/__init__.py
- shared/admin.py 1 addition, 0 deletionsshared/admin.py
- shared/apps.py 6 additions, 0 deletionsshared/apps.py
- shared/models.py 3 additions, 0 deletionsshared/models.py
- shared/static/shared/style.css 524 additions, 0 deletionsshared/static/shared/style.css
- shared/tests.py 3 additions, 0 deletionsshared/tests.py
.gitignore
0 → 100644
LICENSE
0 → 100644
Makefile
0 → 100644
README.md
0 → 100644
env.example
0 → 100644
manage.py
0 → 100755
package.json
0 → 100644
{ | ||
"name": "projectname", | ||
"version": "0.0.1", | ||
"description": "", | ||
"private": true, | ||
"dependencies": { | ||
"css-loader": "^6.7.3", | ||
"style-loader": "^3.3.1", | ||
"tailwindcss": "^3.2.4", | ||
"webpack": "^5.75.0", | ||
"webpack-bundle-tracker": "^1.8.0", | ||
"webpack-cli": "^5.0.1" | ||
}, | ||
"scripts": { | ||
"build": "npx tailwindcss -i ./static_src/base.css -o ./shared/static/shared/style.css && npx webpack build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@git.imaniti.org:Tomas/Project-Name.git" | ||
}, | ||
"author": "Tomáš Valenta", | ||
"license": "AGPL-3.0-or-later" | ||
} |
projectname/__init__.py
0 → 100644
projectname/asgi.py
0 → 100644
projectname/settings/base.py
0 → 100644
projectname/settings/dev.py
0 → 100644
projectname/urls.py
0 → 100644
projectname/wsgi.py
0 → 100644
requirements/base.txt
0 → 100644
shared/__init__.py
0 → 100644
shared/admin.py
0 → 100644
shared/apps.py
0 → 100644
shared/models.py
0 → 100644
shared/static/shared/style.css
0 → 100644
shared/tests.py
0 → 100644
Please register or sign in to comment