1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-22 20:01:36 +03:00
guide/front
2019-08-03 08:48:56 +04:00
..
build Front/chore/migrate to vuetify 2.0 (#348) 2019-08-03 06:18:26 +04:00
client Link to the license updated; fixes #350 2019-08-03 08:48:56 +04:00
types Front/structure refactor and building reconfigure (#277) 2019-04-18 01:52:43 +04:00
utils Front/structure refactor and building reconfigure (#277) 2019-04-18 01:52:43 +04:00
.editorconfig Fully replaced frontend part. Now everything written in typescript. 2018-09-02 23:26:15 +03:00
.gitignore Fully replaced frontend part. Now everything written in typescript. 2018-09-02 23:26:15 +03:00
babel.config.js Front/chore/migrate to vuetify 2.0 (#348) 2019-08-03 06:18:26 +04:00
config.js Front: config api url can be set through enviroment variable 2019-04-19 15:44:46 +04:00
index.html Front/structure refactor and building reconfigure (#277) 2019-04-18 01:52:43 +04:00
package-lock.json Front/chore/migrate to vuetify 2.0 (#348) 2019-08-03 06:18:26 +04:00
package.json Front/chore/migrate to vuetify 2.0 (#348) 2019-08-03 06:18:26 +04:00
postcss.config.js 404 page (#293) 2019-05-20 23:19:38 +04:00
prod.tsconfig.json Front/structure refactor and building reconfigure (#277) 2019-04-18 01:52:43 +04:00
README.md npm run 2019-07-04 20:14:08 +03:00
server.ts Front/structure refactor and building reconfigure (#277) 2019-04-18 01:52:43 +04:00
tsconfig.json Front/structure refactor and building reconfigure (#277) 2019-04-18 01:52:43 +04:00
tslint.json Front/structure refactor and building reconfigure (#277) 2019-04-18 01:52:43 +04:00

Commands

  • npm run dev - Start developing environment (starts both server and setup client middleware for server).
  • npm run build - Builds to /dist folder. Compiles (from ts to js) server right in dist folder, client files compiled in /dist/src.

Deploy process

Requirements: Node version should be >= 11, because of using fs async methods which experimental now.

  1. git pull

  2. npm i

  3. Now you have a choice how to set PORT and API_URL. Either set them in front/config.js, or use export (set) PORT=%port_number% API_URL=%api_url% (for example "http://localhost:4400" quotes matter) with dev commands.

  4. npm run build

  5. cd dist

  6. npm i

  7. export (set) NODE_ENV=production

  8. node server