Source code for the getlaminas.org website.
To test the application, use the provided docker-compose configuration:
$ docker-compose build
$ docker-compose up
# browse to http://localhost:9000The above commands will launch the application. If you want to work on CSS during that time, you will need to have node, npm, and gulp installed on your host machine. Once they are:
# Because files are copied from the container, we need to make them writable:
$ sudo chmod a+rw data/assets.json public/css/*.css
# Now we can install dependencies and start watching for changes:
$ cd bootstrap
$ npm i
$ gulpFrom there, any changes to CSS will be propagated to the application, and reloading the page in the browser will show the changes.
To build the image:
$ make image # or just "make"To push the image to the Docker Hub:
$ make hub