Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
8891e81
feat(core): add api layer for application
May 2, 2018
5df4fb0
Merge branch 'api' of github.com:NTlegend/stud_app into yardev
Yar-ua May 7, 2018
9b824bc
add style and login page
Yar-ua May 7, 2018
c03fd7a
fix login validation
Yar-ua May 8, 2018
d01ad5e
improve registration
Yar-ua May 8, 2018
88eaa54
create get products
Yar-ua May 9, 2018
30ed03b
fix
Yar-ua May 9, 2018
79cfe0d
fix2. get products - works
Yar-ua May 9, 2018
d7030c4
improve login/out/register with token
Yar-ua May 11, 2018
6b1cacd
begin fix pageheader
Yar-ua May 13, 2018
13a6a88
fix problems
Yar-ua May 13, 2018
41c2045
move header to component file
Yar-ua May 13, 2018
1f0f261
add create product form
Yar-ua May 13, 2018
ef16d5e
creating update products
Yar-ua May 28, 2018
95e70f9
update method works
Yar-ua May 28, 2018
40e7b2e
product crud work
Yar-ua May 29, 2018
0a6cd39
prepeare to upload image
Yar-ua Jun 4, 2018
d14cbd4
begin upload image...
Yar-ua Jun 4, 2018
43e06a5
upd
Yar-ua Jun 5, 2018
26c3419
upd2
Yar-ua Jun 5, 2018
f3f795f
move products to module
Yar-ua Jun 5, 2018
86f3bf2
add upload and destroy image
Yar-ua Jun 5, 2018
b209e44
fix smth
Yar-ua Jun 5, 2018
e148631
upload, update and delete images and products - work
Yar-ua Jun 6, 2018
39ada40
fix bugs, add auth
Yar-ua Jun 6, 2018
caa008d
improve products: show & update ajax
Yar-ua Jun 10, 2018
194af80
refactoring
Yar-ua Jun 10, 2018
8d09e03
improve user
Yar-ua Jun 11, 2018
b7b3b26
upd
Yar-ua Jun 11, 2018
40828d8
create sort, need pagination
Yar-ua Jun 11, 2018
22f3259
add pagination
Yar-ua Jun 13, 2018
f8a4177
Merge pull request #1 from Yar-ua/yardev
Yar-ua Jun 13, 2018
57fca74
init pagination to work
Yar-ua Jun 13, 2018
45238c4
init params in ur
Yar-ua Jun 14, 2018
0e76b60
cut on components
Yar-ua Jun 14, 2018
fe62a77
correct by comments
Yar-ua Jun 16, 2018
c18938c
create admin panel
Yar-ua Jun 19, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build/webpack.dev.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ const devWebpackConfig = merge(baseWebpackConfig, {
quiet: true, // necessary for FriendlyErrorsPlugin
watchOptions: {
poll: config.dev.poll,
}
},
disableHostCheck: true
},
plugins: [
new webpack.DefinePlugin({
Expand Down
2 changes: 1 addition & 1 deletion config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {

// Various Dev Server settings
host: '0.0.0.0', // can be overwritten by process.env.HOST
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
port: 82, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
autoOpenBrowser: false,
errorOverlay: true,
notifyOnErrors: true,
Expand Down
3 changes: 2 additions & 1 deletion config/prod.env.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use strict'
module.exports = {
NODE_ENV: '"production"'
NODE_ENV: '"production"',
apiUrl: '"http://ymarket.net"'
}
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>stud</title>
<title>YMarket</title>
</head>
<body>
<div id="app"></div>
Expand Down
Loading