Skip to content

Commit 32a4221

Browse files
committed
move files from sources to root
1 parent 065e26f commit 32a4221

39 files changed

+9
-26
lines changed

.dockerignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore everything, beacause we use volume
2+
*

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ target/
109109
# Frontend
110110
node_modules/
111111

112-
sources/_site/
112+
_site/

sources/_config.yml _config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ github_username: spbpython
99

1010
# Build settings
1111
markdown: kramdown
12+
exclude:
13+
- node_modules
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docker-compose.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ services:
55
ports:
66
- '4000:4000'
77
volumes:
8-
- './sources:/site'
8+
- './:/site'
99
command: serve --watch
10+

sources/feed.xml feed.xml

File renamed without changes.

sources/index.html index.html

File renamed without changes.

sources/.gitignore

-2
This file was deleted.

sources/readme.md

-20
This file was deleted.

webpack.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ var ExtractTextPlugin = require('extract-text-webpack-plugin');
22
var path = require('path');
33

44
module.exports = {
5-
entry: "./sources/assets/js/main.js",
5+
entry: "./assets/js/main.js",
66
output: {
7-
path: path.resolve(__dirname, "sources/bundles"),
7+
path: path.resolve(__dirname, "bundles"),
88
filename: "app.js"
99
},
1010
module: {

0 commit comments

Comments
 (0)