Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
chore: updated package naming
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasconstantino committed Mar 14, 2019
1 parent 28d5e73 commit a47ac9c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ export GROUP_ID=$(shell if [ `id -g` == '20' ]; then echo '1000'; else echo `id

run:
touch ./config/docker/.bash_history
docker-compose run --service-ports --rm drupal-next-dev
docker-compose run --service-ports --rm next-on-drupal-dev

build:
docker-compose -f docker-compose.yml up -d

in:
docker exec -it $(shell docker-compose ps -q drupal-next-dev) /bin/bash
docker exec -it $(shell docker-compose ps -q next-on-drupal-dev) /bin/bash

stop:
docker-compose stop

clean:
docker-compose down
docker rmi drupal-next-dev
docker rmi next-on-drupal-dev
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Drupal Next
# Next on Drupal

Boilerplate for a NextJS based and Drupal backed application.
Boilerplate for a NextJS based on Drupal backend application.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: '2'

services:
drupal-next-dev:
image: drupal-next
next-on-drupal-dev:
image: next-on-drupal
build:
context: ./config/docker/
ports:
Expand Down
2 changes: 1 addition & 1 deletion now.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": 2,
"name": "nextjs",
"name": "next-on-drupal",
"builds": [{ "src": "package.json", "use": "@now/next" }]
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "drupal-next",
"name": "next-on-drupal",
"version": "0.1.0",
"private": true,
"description": "Boilerplate for a NextJS based and Drupal backed application.",
"repository": "ssh://[email protected]/taller-repo/drupal-next.git",
"description": "Boilerplate for a NextJS based on Drupal backend application.",
"repository": "ssh://[email protected]/taller-repo/next-on-drupal.git",
"license": "UNLINCENSED",
"author": "Lucas Constantino Silva <[email protected]>",
"main": "next.config.js",
Expand Down

0 comments on commit a47ac9c

Please sign in to comment.