Skip to content

Commit 662c61e

Browse files
committed
Initial commit
0 parents  commit 662c61e

File tree

2,478 files changed

+70126
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,478 files changed

+70126
-0
lines changed

.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DEBUG=True
2+
SECRET_KEY=S3cr3t_K#Key
3+
SERVER=boilerplate-code-django.appseed.us

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
5+
# tests and coverage
6+
*.pytest_cache
7+
.coverage
8+
9+
# database & logs
10+
*.db
11+
*.sqlite3
12+
*.log
13+
14+
# venv
15+
env
16+
env__
17+
venv
18+
19+
# other
20+
.DS_Store
21+
22+
# javascript
23+
package-lock.json
24+
25+
staticfiles/*
26+
!staticfiles/.gitkeep
27+
.vscode/symbols.json

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Change Log
2+
3+
## [1.0.4] 2021-01-04
4+
### Bug fixing
5+
6+
- Read properly the `.env` variables. Impacted file(s):
7+
- Impacted file: **core/settings.py**
8+
9+
## [1.0.3] 2021-01-01
10+
### Bug fixing, Improvements
11+
12+
- 2021-01-01 - Improvements
13+
- Update login form label
14+
- Inject the current page name in view (segment variable)
15+
16+
- 2020-06-28 - Update the UI Kit
17+
- Quick UI KIt by Webpixels
18+
19+
- Patch #3 - Whitenoise Fix - Wrong positioning in 'core/settings.py'
20+
- WhiteNoiseMiddleware must be positioned right after SecurityMiddleware
21+
- Impacted file: **core/settings.py** / MIDDLEWARE section
22+
23+
## [1.0.2] 2020-06-18
24+
### Bug fixing, Improvements
25+
26+
- Patch #1 - Error when access `admin` path (no trailing slash)
27+
- Update Sample UI Kit - [Neumorphism UI](https://themesberg.com/product/ui-kits/neumorphism-ui) by Themesberg
28+
29+
## [1.0.1] 2020-05-30
30+
### Bug fixing, Improvements
31+
32+
- Add CHANGELOG.md to track all changes
33+
- Patch Error-404.html not used in all contexts
34+
- Rename error pages: error-40X become page-40X
35+
- Update LICENSE file - added more information regarding the app usage
36+
37+
## [1.0.0] 2020-02-07
38+
### Initial Release

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM python:3.6
2+
3+
COPY manage.py gunicorn-cfg.py requirements.txt .env ./
4+
COPY app app
5+
COPY authentication authentication
6+
COPY core core
7+
8+
RUN pip install -r requirements.txt
9+
10+
RUN python manage.py makemigrations
11+
RUN python manage.py migrate
12+
13+
EXPOSE 5005
14+
CMD ["gunicorn", "--config", "gunicorn-cfg.py", "core.wsgi"]

LICENSE.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# MIT License
2+
3+
Copyright (c) 2019 - present [AppSeed](http://appseed.us/)
4+
5+
<br />
6+
7+
## Licensing Information
8+
9+
<br />
10+
11+
| Item | - |
12+
| ---------------------------------- | --- |
13+
| License Type | MIT |
14+
| Use for print | **YES** |
15+
| Create single personal website/app | **YES** |
16+
| Create single website/app for client | **YES** |
17+
| Create multiple website/apps for clients | **YES** |
18+
| Create multiple SaaS applications | **YES** |
19+
| End-product paying users | **YES** |
20+
| Product sale | **YES** |
21+
| Remove footer credits | **YES** |
22+
| --- | --- |
23+
| Remove copyright mentions from source code | NO |
24+
| Create HTML/CSS template for sale | NO |
25+
| Create Theme/Template for CMS for sale | NO |
26+
| Separate sale of our UI Elements | NO |
27+
28+
<br />
29+
30+
---
31+
For more information regarding licensing, please contact the AppSeed Service < *support@appseed.us* >

LICENSE_commercial.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Commercial License
2+
3+
Copyright (c) 2019 - present [AppSeed](http://appseed.us/)
4+
5+
<br />
6+
7+
## Licensing Information
8+
9+
All commercial web apps (including this one) provided by AppSeed are released under two configurations:
10+
11+
<br />
12+
13+
### [Personal License](https://github.com/app-generator/license-personal)
14+
15+
> For full information please access [Personal License](https://github.com/app-generator/license-personal)
16+
17+
- Solo-developers, Small teams (max 3 members)
18+
- Updates: 6mo.
19+
- LIVE Support: 6mo.
20+
- Create single personal website/app
21+
- Create single website/app for client
22+
- Paying end-users - YES
23+
- Create SaaS application - NO
24+
- Production deployment assistance - NO
25+
26+
<br />
27+
28+
### [StartUP License](https://github.com/app-generator/license-startup)
29+
30+
> For full information please access [StartUP License](https://github.com/app-generator/license-startup)
31+
32+
- Medium teams (max 9 members)
33+
- Updates: 12mo.
34+
- LIVE Support: 12mo.
35+
- Create single personal website/app
36+
- Create single website/app for client
37+
- Paying end-users - YES
38+
- Create SaaS application - NO
39+
- Production deployment assistance - NO
40+
41+
<br />
42+
43+
### [Company License](https://github.com/app-generator/license-company)
44+
45+
> For full information please access [Company License](https://github.com/app-generator/license-company)
46+
47+
- Large teams (unlimited members)
48+
- Updates: 12mo.
49+
- LIVE Support: 12mo.
50+
- Create multiple personal websites/apps
51+
- Create multiple websites/apps for clients
52+
- Paying end-users - YES
53+
- Create SINGLE SaaS application - YES
54+
- Production deployment assistance - NO
55+
56+
<br />
57+
58+
---
59+
For more information regarding licensing, please contact the AppSeed Service < *support@appseed.us* >

Procfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: gunicorn core.wsgi --log-file=-

0 commit comments

Comments
 (0)