Skip to content
/ starter Public

🌱 This is the official starter template for ⛺ Tent.

License

Notifications You must be signed in to change notification settings

tentjs/starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Starter

The official starter template for ⛺ Tent.

Features

Usage

Clone the starter project

Clone the repository to your local machine using the following command:

git clone https://github.com/tentjs/starter my-app

This command creates a new directory called my-app containing the starter project. The directory structure will look like this:

.
└───my-app
    ├───.github
    │   └───workflows
    └───src
        ├───components
        │   └───counter
        ├───utils
        └───__tests__
  • .github/workflows: Contains GitHub Actions workflows for CI/CD.
  • src/components/counter: Holds the counter component code.
  • src/utils: Contains utility functions used throughout the project.
  • src/__tests__: Houses the test files.

Install dependencies

Change your current working directory to the newly created my-app directory. This ensures that all subsequent commands are executed within the context of your project.

cd my-app

Install the necessary dependencies required by the project using npm:

npm install

This command reads the package.json file and installs all listed dependencies into the node_modules directory. Dependencies include libraries and tools necessary for development and production.

Start the development server

Launch the development server with the following command:

npm run watch

This command starts a local server and watches for changes in your project files. When a file is modified, the server automatically reloads, allowing you to see your changes in real-time.

About

🌱 This is the official starter template for ⛺ Tent.

Resources

License

Stars

Watchers

Forks