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

Briefly explain the files/folders in the template and the generated package #300

Open
fdiblen opened this issue Jul 3, 2024 · 3 comments
Labels
good first issue Good for newcomers usage docs Related to documentation on how to use the package or template
Milestone

Comments

@fdiblen
Copy link
Collaborator

fdiblen commented Jul 3, 2024

Description

Some users/developers may not be familiar with the files and/or project structure. It would helps users and developers if we have brief description for the template and the generated package.

For example for the generated package a user would have to following:

├── CITATION.cff
├── docs
│   ├── make.jl
│   ├── Project.toml
│   └── src
├── LICENSE
├── lychee.toml
├── Project.toml
├── README.md
├── src
│   └── JohnConnor.jl
└── test
    ├── Project.toml
    └── runtests.jl

The description could be:

  • ...
  • docs: this folder contains the documentation of the project.
    • make.jl generates and deploys the documentation
    • ...
  • test: this folder contains the tests of the package
    • runtests.jl: you can add your unit tests in this file
    • ...
  • ...
@abelsiqueira
Copy link
Owner

There is some info in the Explanation section of the docs, I don't know if you had found that yet.

If yes, then you think this fits there?

If no, then what would have made it easier to find this section?

@abelsiqueira abelsiqueira added this to the JuliaCon milestone Jul 3, 2024
@abelsiqueira abelsiqueira added usage docs Related to documentation on how to use the package or template good first issue Good for newcomers labels Jul 3, 2024
@Kiunga1
Copy link

Kiunga1 commented Jul 3, 2024

Here is a simple explanation of files/folders in the template and the generated package

Generated Package Structure Explained:

  • CITATION.cff: Helps others properly cite your package in academic papers.
  • docs/:
    • make.jl: This script creates and shares the project's documentation.
    • Project.toml: Lists what other software your package needs to run.
    • src/: Holds files used to make the documentation.
  • LICENSE: Explains how people can use and share your package.
  • lychee.toml: A setup file just for your project.
  • Project.toml: Lists what other software your package needs to run.
  • README.md: A guide that explains your package and how to use it.
  • src/: Holds most of your code.
    • JohnConnor.jl: An example of what your package does.
  • test/:
    • Project.toml: Lists what other software your tests need.
    • runtests.jl: A script that tests how well your package works.

This setup helps anyone who wants to use or work on your package understand how everything is organized and find what they need easily.

Resource
GitHub Documentation:

GitHub Guides on Repository Structure - Explains the basic structure of GitHub repositories, including files like README.md, LICENSE, and directories like docs, src, and test.

@abelsiqueira
Copy link
Owner

Hi @Kiunga1, thanks for the comment, but I'm not sure these are Julia specific comments. Are you using the template? Sorry to ask this, but is this comment generated by AI (e.g., ChatGPT)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers usage docs Related to documentation on how to use the package or template
Projects
Status: No status
Development

No branches or pull requests

3 participants