forked from amirul1000/erp-in-Python-Django
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.txt
More file actions
110 lines (70 loc) · 2.51 KB
/
Copy pathhelp.txt
File metadata and controls
110 lines (70 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
http://docs.python-guide.org/en/latest/dev/virtualenvs/
https://docs.djangoproject.com/en/1.10/
C:\Users\USER\AppData\Local\Programs\Python\Python36-32\
C:\Python27
pip install virtualenv
cd my_project_folder
virtualenv my_project
virtualenv -p C:\Users\USER\AppData\Local\Programs\Python\Python36-32\python.exe my_project
virtualenv -p C:\Python27\python.exe my_project
\my_project\Scripts\activate.bat
\my_project\Scripts\deactivate.bat
rm -rf my_project
python --version
pip install virtualenvwrapper-win
mkvirtualenv myproje
workon myproject
pip install django
mkvirtualenv venv
virtualenv -p C:\Users\USER\AppData\Local\Programs\Python\Python36-32\python.exe my_project
workon my_project
pip install Django
django-admin startproject mysite
cd myside
python manage.py runserver
python -m django --version
django-admin startproject mysite
python manage.py startapp polls
python manage.py runserver
python manage.py createsuperuser --username=admin --email=admin@admin.com
python manage.py migrate
python manage.py makemigrations
python manage.py makemigrations your_app_label1 your_app_label2
pip install django-allauth
https://scotch.io/tutorials/working-with-django-templates-static-files
https://tutorial.djangogirls.org/en/deploy/index.html
//////////////////////////////Accounting////////////////
http://www.leoisaac.com/fin/fin012.htm
http://www.accountingtools.com/questions-and-answers/what-is-a-single-entry-system.html
https://www.youtube.com/watch?v=Mx3RUc9YspU
https://www.youtube.com/watch?v=CAVaV-96eBk
Types of Accounts
Balance Sheet Accounts
Assets
Cash
Account Receiveable
Equipment
Inventory
Prepaid Expenses
Liablities
Accounts Payable
Accured Expenses
Notes Payable
Unearned Revenue
Deferred Taxes
Owners Equity
Capital
Retained Earnings
Income Statements Accounts
Revenue
Income
Expense
Salaries
Selling Expenses
Depreciation
Rent
Interest Expense
http://www.django-rest-framework.org/tutorial/quickstart/
http://www.django-rest-framework.org/tutorial/1-serialization/
https://thinkster.io/django-angularjs-tutorial
http://blog.kevinastone.com/getting-started-with-django-rest-framework-and-angularjs.html