bl-admin is a administration tool for Boklisten.no. This README only
describes development and technical detail. For a deep-dive into the
application please read our
documentation.
- NodeJS v8.0 or higher
- Typescript v3.0 or higher
- NPM v6.14.0 or higher
- bl-api v1.11.2 or higher
- Clone this repo to your own computer
git clone https://github.com/boklisten/bl-admin - Navigate into the newly created
bl-adminfolder - Install npm modules
npm i - Ensure that
bl-apiis running onhttp://localhost:1337- No content will be available in
bl-adminifbl-apiis not running. - You will not be able to login if
bl-apiis not running.
- No content will be available in
- Start application locally with
npm run watch - You should now be able to view
bl-adminonhttp://localhost:8080- the content will auto-update if you do changes to the code
Runs the application with angular --configuration set to local. You can
view the application on localhost:8080.
Builds the application with angular --configuartion set to the environment variable ANGULAR_ENV.
Builds the application with angular --configuartion set to production-nb.
Extracts all i18n tags from all the html files and puts them into three
differnet xlf-file under ./src/locale.
This script used by the server on Heroku before hosting it.
There are a number of build files and settings files that are not purly from
Angular. To develop bl-admin it is a good thing to know what they are.
The Procfile is the Heroku settings file. Your can read
more about it here.
This is the settings file for i18n the translator ngx-i18nsupport. Read
more.
This is the server file. It is a script for running the bl-admin application
on the heroku server. Very simple node+express script.
This file is for Angulars Hot Module Replacement. Read
more.
We use the same commit message scheme as Anglular. You can read more about it here.
bl-admin is versioned using semantic
versioning meaning
MAJOR.MINOR.PATCH. Ex: 1.9.3.
There are two main branches master and dev. You should use dev for all
development and treat master as the public live version.
This branch should be treated as the production branch and should not have failing code.
When you push code to master the code is also pushed to our production
environment on Heroku. Be aware that any commit you push to master will be
viewable and executed on our live production server. The master branch is
currently running on admin.boklisten.no.
You should always update the version when you push to master. Read more about versions
This branch should be treated as a development branch, it should always be runnable but does not need to be at the same standard as master.
When you push to dev the code is also pushed to our dev environment on
Heroku. The dev branch is currently running on
bladmin.test.boklisten.no