fixing urlPrefix in prod environment

This commit is contained in:
Jochen Saalfeld 2018-11-01 16:05:01 +01:00
parent 72e3df8b65
commit 8b191e9e0a
No known key found for this signature in database
GPG Key ID: 8ACD4E8264B67DF4
4 changed files with 61 additions and 18 deletions

View File

@ -46,21 +46,63 @@ matrix:
packages:
- google-chrome-stable
cache:
yarn: true
directories:
- $HOME/.yarn-cache
- node_modules
before_install:
- sh -e /etc/init.d/xvfb start
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
- yarn global add @angular/cli
- npm install -g @angular/cli
- ng --version
- cd client
install:
- yarn install
- npm install
script:
- yarn run lint
- yarn run test --watch=false
- npm run lint
- ng test --watch=false
- language: node_js
node_js:
- "10.5"
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
cache:
directories:
- node_modules
before_install:
- sh -e /etc/init.d/xvfb start
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- npm install -g @angular/cli
- ng --version
- cd client
install:
- npm install
script:
- ng build
- language: node_js
node_js:
- "10.5"
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
cache:
directories:
- node_modules
before_install:
- sh -e /etc/init.d/xvfb start
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- npm install -g @angular/cli
- ng --version
- cd client
install:
- npm install
script:
- ng build --prod

View File

@ -18,6 +18,7 @@ Core:
mode [#3799, #3817].
- Changed format for elements send via autoupdate [#3926].
- Add a change-id system to get only new elements [#3938].
- Switch from Yarn back to npm.
Motions:
- Option to customly sort motions [#3894].

View File

@ -16,14 +16,13 @@ a. Check requirements
'''''''''''''''''''''
Make sure that you have installed `Python (>= 3.6) <https://www.python.org/>`_,
`Node.js (>=4.x) <https://nodejs.org/>`_, `Yarn <https://yarnpkg.com/>`_ and
`Node.js (>=10.x) <https://nodejs.org/>`_ and
`Git <http://git-scm.com/>`_ on your system. You also need build-essential
packages and header files and a static library for Python.
For Ubuntu 16.04 e. g. follow `Yarn installation instructions
<https://yarnpkg.com/en/docs/install>`_ and run::
For Debian based systems (Ubuntu, etc) run::
$ sudo apt-get install git nodejs nodejs-legacy npm build-essential python3-dev
$ sudo apt-get install git nodejs npm build-essential python3-dev
b. Get OpenSlides source code
@ -81,13 +80,13 @@ Go in the client's directory in a second command-line interface::
Install all dependencies and start the development server::
$ npm install
$ yarn start
$ npm start
Now the client is available under ``localhost:4200``.
If you do not need to work with the client, you can build the client and let it be delivered by the server directly::
$ yarn build
$ npm build
The client's address is now ``localhost:8000``.
@ -131,15 +130,15 @@ b. Client tests and commands
Change to the client's directory to run every client related command. Run client tests::
$ yarn test
$ npm test
Fix the code format and lint it with::
$ yarn pretty-quick && yarn lint
npm run lint
To extract translations run::
$ yarn extract
$ npm run extract
OpenSlides in big mode
======================

View File

@ -1,3 +1,4 @@
export const environment = {
production: true
production: true,
urlPrefix: '/apps'
};