Skip to content

Commit eda0dbd

Browse files
committed
ktl-554 feat: change flask port
1 parent e45c237 commit eda0dbd

6 files changed

+7
-7
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ RUN pip install -r /tmp/requirements.txt
1919
RUN curl -fsSL https://deb.nodesource.com/setup_12.x | sudo -E bash -
2020
RUN apt-get install -y nodejs
2121

22-
EXPOSE 5000
22+
EXPOSE 8080
2323
ENTRYPOINT ["python", "/src/kotlin-website.py"]

build-devserver.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if [[ "${1:-}" == "bash" ]]; then
3030

3131
docker run -it --rm \
3232
-v $(pwd):/src \
33-
-p 5000:5000 \
33+
-p 8080:8080 \
3434
--entrypoint bash \
3535
kotlin-web-site
3636

@@ -45,7 +45,7 @@ while true; do
4545

4646
docker run -it --rm \
4747
-v $(pwd):/src \
48-
-p 5000:5000 \
48+
-p 8080:8080 \
4949
kotlin-web-site \
5050
"$@" || true
5151

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
env_file:
99
- .env
1010
ports:
11-
- 5000:5000
11+
- 8080:8080
1212
volumes:
1313
- ./:/src
1414
working_dir: /src

kotlin-website.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ def add_header(request):
567567
print("Unknown argument: " + argv_copy[1])
568568
sys.exit(1)
569569
else:
570-
app.run(host="0.0.0.0", debug=True, threaded=True, **{"extra_files": {
570+
app.run(host="0.0.0.0", port=8080, debug=True, threaded=True, **{"extra_files": {
571571
'/src/data/_nav.yml',
572572
*glob.glob("/src/pages-includes/**/*", recursive=True),
573573
}})

mysettings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
CACHE_TYPE = "null"
44
PREFERRED_URL_SCHEME = 'http'
5-
SERVER_NAME = 'localhost:5000'
5+
SERVER_NAME = 'localhost:8080'
66
FLATPAGES_EXTENSION = '.md'
77
FLATPAGES_HTML_RENDERER = jinja_aware_markdown
88
FREEZER_IGNORE_404_NOT_FOUND = True

webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = (params = {}) => {
1212
const isDevServer = process.env.WEBPACK_SERVE === 'true';
1313
const sourcemaps = params.sourcemaps || isDevelopment;
1414

15-
const siteHost = 'localhost:5000';
15+
const siteHost = 'localhost:8080';
1616
const webDemoURL = params['webdemo-url'] || 'http://kotlin-web-demo-cloud.passive.aws.intellij.net';
1717
const indexName = params['index-name'] || 'dev_KOTLINLANG';
1818

0 commit comments

Comments
 (0)