-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# Guide | ||
|
||
`guide` is a website that summarizes actions by disaster, all maintained by the community | ||
|
||
## Features | ||
|
||
- The site is very lightweight | ||
- It is based on information from Japanese national institutions. | ||
|
||
## Getting Started | ||
|
||
### Prerequisites | ||
|
||
- Node.js (version 20 or higher) | ||
- yarn (or yarn, although this project prefers yarn) | ||
|
||
### Installation | ||
|
||
1. Clone the repository: | ||
|
||
```bash | ||
git clone https://github.com/evacuate/guide.git | ||
``` | ||
|
||
2. Navigate to the project directory: | ||
|
||
```bash | ||
cd guide | ||
``` | ||
|
||
3. Install dependencies: | ||
|
||
```bash | ||
yarn install | ||
``` | ||
|
||
### Scripts | ||
|
||
- **Build**: Build the project | ||
|
||
```bash | ||
yarn run build | ||
``` | ||
|
||
- **Start**: Start the development server | ||
|
||
```bash | ||
yarn run start | ||
``` | ||
|
||
- **Format Code**: Format code | ||
|
||
```bash | ||
yarn run format | ||
``` | ||
|
||
- **Lint Code**: Lint code | ||
|
||
```bash | ||
yarn run lint | ||
``` | ||
|
||
### Usage | ||
|
||
1. Start the development server: | ||
|
||
```bash | ||
yarn run start | ||
``` | ||
|
||
2. Open the browser and navigate to `http://localhost:8080` | ||
|
||
## Author | ||
|
||
I proposed, facilitated, and developed the entire project. | ||
|
||
- Minagishl ([@minagishl](https://github.com/minagishl)) | ||
|
||
## License | ||
|
||
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details. |