Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aragon init prepare template for environments #371

Merged
merged 5 commits into from
Feb 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"build": "npm run extract-roles && babel -d dist src --copy-files",
"prepare": "npm run build",
"test": "ava",
"lint": "eslint src test && documentation lint src test",
"lint": "eslint src test/commands && documentation lint src test/commands",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just noticed this, but it seems unnecessary to run documentation lint on the tests 😄

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll include this change in #359

"extract-roles": "node scripts/extract-roles"
},
"repository": {
Expand Down Expand Up @@ -116,7 +116,7 @@
"@babel/register"
],
"files": [
"test/**/*.js"
"test/commands/**/*.js"
]
},
"aragon": {
Expand Down
37 changes: 15 additions & 22 deletions src/lib/init/prepare-template.js
Original file line number Diff line number Diff line change
@@ -1,34 +1,27 @@
import path from 'path'
import fs from 'fs-extra'

export async function prepareTemplate(basename, appName) {
const arappPath = path.resolve(basename, 'arapp.json')
export async function prepareTemplate(dir, appName) {
const basename = appName.split('.')[0]
const arappPath = path.resolve(dir, 'arapp.json')
const arapp = await fs.readJson(arappPath)

// TODO remove once the old arapp.json is no longer supported
if (!arapp.environments) {
arapp.environments = {}
}
const defaultEnv = arapp.environments.default
const stagingEnv = arapp.environments.staging
const productionEnv = arapp.environments.production

const props = {
network: 'development',
appName: appName,
}
defaultEnv.appName = appName
stagingEnv.appName = stagingEnv.appName.replace(/^app/, basename)
productionEnv.appName = productionEnv.appName.replace(/^app/, basename)

if (arapp.environments.default) {
Object.assign(arapp.environments.default, props)
} else {
arapp.environments.default = props
}
Object.assign(arapp.environments.default, defaultEnv)
Object.assign(arapp.environments.staging, stagingEnv)
Object.assign(arapp.environments.production, productionEnv)

// remove old arapp.json props
delete arapp.appName
delete arapp.version
const gitFolderPath = path.resolve(dir, '.git')
const licensePath = path.resolve(dir, 'LICENSE')

const gitFolderPath = path.resolve(basename, '.git')
const licensePath = path.resolve(basename, 'LICENSE')

const packageJsonPath = path.resolve(basename, 'package.json')
const packageJsonPath = path.resolve(dir, 'package.json')
const packageJson = await fs.readJson(packageJsonPath)
delete packageJson.license
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just curious, should we move this to also be in create-aragon-app (really really want to start pushing that!)?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes! I already made the same changes in create-aragon-app. Seems its never the perfect time to merge the monorepo PR to finally have create-aragon-app in aragonCLI 😅Maybe after the beta release?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After the next release (5.4) would be a great time!


Expand Down
21 changes: 18 additions & 3 deletions test/commands/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import fs from 'fs-extra'

import { checkProjectExists, prepareTemplate } from '../../src/lib/init'

import defaultAPMName from '../../src/helpers/default-apm'

const projectPath = './.tmp/aragon-app'

test.beforeEach(t => {
Expand All @@ -27,14 +29,25 @@ test('prepare project template', async t => {
const arappPath = `${projectPath}/arapp.json`
const packageJsonPath = `${projectPath}/package.json`
const licensePath = `${projectPath}/LICENSE`
const appName = 'TestApp'
const appName = defaultAPMName('TestApp')
const basename = appName.split('.')[0]

await fs.ensureDir(repoPath)
await fs.ensureFile(arappPath)
await fs.ensureFile(packageJsonPath)
await fs.ensureFile(licensePath)
await fs.writeJson(arappPath, {
appName: 'boilerplate-placeholder',
environments: {
default: {
appName: 'app.aragonpm.eth',
},
staging: {
appName: 'app.open.aragonpm.eth',
},
production: {
appName: 'app.open.aragonpm.eth',
},
},
})
await fs.writeJson(packageJsonPath, {
license: 'MIT',
Expand All @@ -48,5 +61,7 @@ test('prepare project template', async t => {
t.falsy(await fs.pathExists(repoPath))
t.is(undefined, packageJson.license)
t.falsy(fs.pathExistsSync(licensePath))
t.is(appName, project.environments.default.appName)
t.is(`${appName}`, project.environments.default.appName)
t.is(`${basename}.open.aragonpm.eth`, project.environments.staging.appName)
t.is(`${basename}.open.aragonpm.eth`, project.environments.production.appName)
})