1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-24 05:45:11 +03:00
guide/front-ps
Jens Krause 2968979823
Add endpoint categories + read state (#202)
+ handle data
+ view data
+ read state on client side
2017-09-07 22:09:32 +02:00
..
client Add endpoint categories + read state (#202) 2017-09-07 22:09:32 +02:00
common Add endpoint categories + read state (#202) 2017-09-07 22:09:32 +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 Add endpoint categories + read state (#202) 2017-09-07 22:09:32 +02:00
package.json Add endpoint categories + read state (#202) 2017-09-07 22:09:32 +02: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 Add endpoint categories + read state (#202) 2017-09-07 22:09:32 +02: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.