Let's recall the whole world!
We welcome any keen developer in helping us build the better PastVu. You can install local version of the project using the following instructions.
You need to have docker and docker-compose installed.
# Start Mongo container in background
docker-compose up -d mongo
# Import Pastvu database
docker-compose exec mongo initdb
# Install node modules
docker-compose run app npm install
# Start the application
docker-compose up
Navigate to http://localhost:3000 and login with the default user admin
/admin
.
Mailcatcher web interface is listening on http://localhost:1080 to view emails which app has sent out.
Data store and Mongo database are using persistent storage (located on volumes), so you can re-create containers without losing the data. If you change code related to server side operation, you will need to restart containers after change to take effect. If you need to delete volumes, execute docker-compose down -v
.
Running docker-compose up
starts all service instances according to
docker-compose.yml
configuration:
- MongoDB - database (required)
- Redis - data store (required)
- app - main application (required)
- worker - task runner
- notifier - service that sends out notifications (emails)
- uploader - service responsible for uploading images
- downloader - service responsible for downloading image
- sitemap - sitemap generator
It's not strictly necessary to start all of them locally, only app
is
required, which can be started with databases using docker-compose up app
,
but if you want to work with images make sure to start corresponding services
as well.
On a very first run Docker entrypoint script copies config/local.config.js.docker-example
into config/local.config.js
. Default configuration is located in default.config.js
file, it's just a JavaScript file, and its object is passed to the local.config.js
as an argument. You can modify any of the props and return the final version of the config. Remember, don't change default.config.js
unless you are altering the default project configuration for a purpose. config/local.config.js.
is in .gitignore
and you can change it locally as much as you want without affecting others.
Depending on the client.hostname
prop in your local.config.js
, you may modify your hosts file to associate that domain with your localhost. There are different ways to modify hosts file on different OS that you can google, for example, on macos you do sudo nano /etc/hosts
. And assuming you have the default setting pastvu.local
, you need to update hosts file with
127.0.0.1 localhost pastvu.local
It is important that client.hostname
is matching hostname of machine where you run browser, as it is used as cookie domain internally. Having it wrong will result in logout on page refresh and other authentication related issues.
As we run node in docker enivronment, each service container has own logs that
can be accessed using docker logs <container name>
command. Aggregated logs
output is also shown in terminal where docker-compose up
is executed.
Internally, each node instance outputs logs to STDOUT
. Log level is set to ALL
when run in development environment.
Defining config.logPath
enables file logging into specified path (make sure it is writable) according
to the logic:
- Write all logs output to
all.log
(excluding express logs) - Write logs of level
ERROR
and above toerrors.log
- Write Express logs of level
ERROR
and above tohttp-errors.log
We are using Jest testing framework. Although, we are in
early stages of adding tests for existing code. It is generally a good idea to
supply your contribution along with tests where posible. To run tests locally,
execute npm run jest
. If you need to supply any CLI
options, call it as npm run jest -- --verbose=true
.
The DEBUG
environment variable is used to enable debug output and filter it.
If you are using docker, you can add it to default extension fields in compose
file. For example, to enable debug output in all running node instances and
output all debug information excluding noisy babel and log4js namespaces,
specify:
x-defaults: &app-image
image: pastvu/node:15.3.0
environment:
- NODE_ENV=development
- DEBUG=*,-babel*,-log4js*
For more information on syntax refer to debug
package
docs.
It is possible to debug application using Node.js inspector client when
required. There are several clients
available,
although most strightforward option is using Chrome DevTools. Open
chrome://inspect
in Chromium based browser and make sure you have
localhost:9229
configured at "Discover network taget". Now you need to start
application with inspector agent enabled:
docker-compose run -p 9229:9229 -p 3000:3000 app npm run inspect
Under "Remote target" section in inspector tab you will see a new running instance that you can use for debugging.
In the case when appication can't be started at all, you can use inspector with an option to break before user code starts:
docker-compose run -p 9229:9229 -p 3000:3000 app npm run inspect-brk
In this case execution will stop at the first line of code, allowing you to run inspector client and control execution flow.
We are using migrate-mongo
database migration tool. Its CLI commands have npm script alises for convenience of running in docker environment:
migrate:create
- alias formigrate-mongo create
migrate:status
- alias formigrate-mongo status
migrate:up
- alias formigrate-mongo up
migrate:down
- alias formigrate-mongo down
migrate
- alias formigrate:up
script
When upgrading manually in docker-compose environment use:
docker-compose run app npm run migrate:status
This will bring up all app dependencies (mongoDb container) and execute required command.
Worker instance applies all pending upgrades automatically when starting.
In order to create new migration, run migrate-mongo create <name_of_migration>
, this will create a file in ./migrations
directory
which needs to be amended according to requirements. For examples please refer
to existing migrations or migrate-mongo
documentation.
-
If you are using docker inside VM and accessing app from host OS (or any other scenario where web client host may differ from the host where you run docker), make sure that
client.hostname
in yourconfig/local.config.js
is matching domain name that client uses to access the app. This setting is used for cookies domain, so having it wrong will result in session being cleared on page refresh. -
When you upgrade continers to newer image, you may experience an issue when any CSS requests in the app result in 500 error and layout is severley broken. This happens when container is not able to overwrite CSS files (they are generated alongside
.less
files atpublic/style/
directory). To fix the issue runnpx grunt clean:publicCss
from project directory and then start application.
Running npm version v2.0.1
will produce a release commit and tag it as v2.0.1
, following this step, you need to push branch HEAD and tag directly to master
(not using PR). Don't forget to manually tag the en
branch after master has been automerged to it, pull its latest state and tag git tag v2.0.1-en
, then push tag upstream as well. Pushing tags should automatically build docker image for each tag and publish them in registry.