Skip to content

Latest commit

 

History

History
83 lines (45 loc) · 2.62 KB

File metadata and controls

83 lines (45 loc) · 2.62 KB
CityZen

NPM Install

The CityZen client is built using Vue.js. The server backend is Node.js with a SQL Lite database.

Tip CityZen requires a fairly recent version of both npm and Node.js. To install both go here: Get NPM
For reference when these docs were written we were using version 12.18.1 of Node.js and version 6.14.5 of npm

Install using NPM

The CityZen-Server project page on npm: CityZen-Server

To install CityZen first create the directory cityzen-server.

md CityZen-Server

Then open a command prompt, navigate to the directory CityZen-Server and type npm init.

npm init

Then you have to answer a series of questions about the project. Next to install the server you want type on the command line:

npm i @codeforlansing/cityzen-server

Or alternately you can install using npx:

npx @codeforlansing/cityzen-server

The CityZen-Client project page on npm: CityZen-Client

To be continued

TIP If you need a local development web server CityZen recommends http-server

GitHub Install