1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-24 05:45:11 +03:00
guide/front-ps
2017-11-01 18:59:10 +01:00
..
client Read server-side state of CategoryDetail (#202) 2017-09-09 20:29:10 +02:00
common Bridge Uid more type safety 2017-10-06 20:16:23 +02:00
server Add endpoint categories + read state (#202) 2017-09-07 22:09:32 +02:00
.gitignore Generate PS types of API endpoints (#199) 2017-09-01 22:13:16 +02:00
bower.json Update PS frontend to latest dependencies 2017-11-01 18:59:10 +01:00
package.json Update PS frontend to latest dependencies 2017-11-01 18:59:10 +01:00
README.md Generate PS types of API endpoints (#199) 2017-09-01 22:13:16 +02:00
webpack.config.client.js Build server-side by webpack (#193) 2017-08-27 21:28:38 +02:00
webpack.config.common.js Build server-side by webpack (#193) 2017-08-27 21:28:38 +02:00
webpack.config.server.js Build server-side by webpack (#193) 2017-08-27 21:28:38 +02:00
yarn.lock Update PS frontend to latest dependencies 2017-11-01 18:59:10 +01:00

[WIP] Guide's front-end

Requirements

Installation

  1. Get all sources:
git clone git@github.com:aelve/guide.git
cd guide
git checkout front-ps-next
  1. Get data of guide-database
./official.sh
  1. Build back-end API
./b
  1. Build PureScript types of Guide's Api
stack exec guide-hs2ps
  1. Install front-end dependencies
cd front-ps
yarn

or by using npm:

cd front-ps
npm i
  1. Build Express server
yarn build:server

or by using npms:

npm run build:server
  1. Build pages (e.g. category-overview or category-detail)
yarn build:client

or by using npm:

npm run build:client

Run

  1. Run back-end
stack exec guide
  1. Run front-end
yarn start

or by using npm:

npm start

Open http://localhost:3333.