Skip to content

Commit 0bf0df2

Browse files
authored
Merge pull request #30 from myonara/master
reworked to pre-portal, introduced dockerfile
2 parents 7394e32 + 4c06644 commit 0bf0df2

57 files changed

Lines changed: 9181 additions & 2209 deletions

Some content is hidden

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

.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Dockerignore for e.g. node_modules
2+
*/node_modules
3+
*/dist

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# webmud3 V0.0.6 !!!
1+
# webmud3 V0.0.7 !!!
22
Webmud3: third generation of the UNItopia Webmud as open source project.
33

44
In this early stages (Versions < 0.1.0) it's not for production.
@@ -7,6 +7,7 @@ In this early stages (Versions < 0.1.0) it's not for production.
77
3. Version 0.0.4 fixed an ANSI colour issue and renamed frontend dir to backend.
88
4. Version 0.0.5 implmented telnet_neg: echo,terminaltype and naws. started with GMCP support.
99
5. Version 0.0.6 implemented sound on top of GMCP, working with UNItopia so far.
10+
6. Version 0.0.7 Rewrite for portal and created dockerfile.
1011

1112
## Installation in the Development environment
1213
### One time prerequisites:
@@ -28,4 +29,8 @@ The server is now running in the background and is listening on 5000.
2829
1. change directory to UI directory
2930
2. `npm install`
3031
3. `ng serve --open`
31-
4. the default browser will open on localhost:4200... Have fun.
32+
4. the default browser will open on localhost:4200/webmud3... Have fun.
33+
34+
### Creating docker image:
35+
1. change directory to webmud3. (where UI and backend are in)
36+
2. docker build -t webmud3:v0.0.7 -f ./dockerfiles/ng.dockerfile .

UI/.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Dockerignore for e.g. node_modules
2+
node_modules
3+
npm-debug.log

UI/angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build": {
1414
"builder": "@angular-devkit/build-angular:browser",
1515
"options": {
16-
"outputPath": "../backend/dist",
16+
"outputPath": "../dist",
1717
"index": "src/index.html",
1818
"main": "src/main.ts",
1919
"polyfills": "src/polyfills.ts",

0 commit comments

Comments
 (0)