Perl Project Template

This is a template for any perl project. Use this template as a starting point.

Jump to Section

Usage

[Back To Top]

To start with the template. Please follow the following steps:

  1. Firstly, you need to have a project store. for example $HOME/web

  2. Make the project store directory

  3. Then download the template

cd $HOME/web
git clone git@git.monitoring.bskyb.com:feeds/TemplatePerl.git perl5-Mon-Foo-Bar
  1. Then run the run-me-first program to update the template into a usable blade.
cd $HOME/web/perl5-Mon-Foo-Bar
bin/run-me-first

...answer all the questions...

run-me-first will change this local copy into a blank new git config. When you commit and push will be no harm to the template.

  1. Your first commit.
cd $HOME/web/perl5-Mon-Foo-Bar
git add . --all
git commit -m "init copy"
  1. Create a remote git repo for your project

Goto https://git.monitoring.bskyb.com

Click on New Project

Type in the Project path "perl5-Mon-Foo-Bar"

Choose the correct Namespace

Then Click on Create project.

  1. Add the repo url to your project
cd $HOME/web/perl5-Mon-Foo-Bar
git remote add origin git@git.monitoring.bskyb.com:`namespace`/`project name`.git
  1. Your first push
cd $HOME/web/perl5-Mon-Foo-Bar
git push -u origin master

Authors

[Back To Top]

Changelog

[Back To Top]