1#!/usr/bin/env python3
2
3"""This is a standalone script that will create a skeleton CHART-based project based
4on answers to a few questions, and the template files in the dist/skeleton directory."""
5
6# This script will create a new skeleton CHART-based project in the chosen directory
7
8# Enter the short name for your project.
9# This will be the directory name to use, and also used to import project modules in Python code.
10# The first character should be a letter. Avoid upper case letters and all symbols.
11# This name is difficult to change later as it appears in several files and directory names.
12
13# Now enter a long name for your project. This will be used as the title in the web interface.
14# You can use any characters. This is easy to change later by editing the settings.py file.
15
16# Would you like to create an example table?
17# Enter a name for the table. Use any combination of upper case letters, numbers or underscores.
18# Enter a description for the table.
19# The table will be created with a single field. Enter a name for the field:
20# Enter a description for the field
21# activity
22# alg
23
24# derived table
25
26# Would you like to create an example event class?
27
28# Would you like to create a sample report template?
29
30# Would you like to create a sample widget?
31
32# Would you like to create a sample standalone command line tool?
33
34# Would you like to customise the main web menu?