Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
VITE_API_URL=http://localhost:5000

APP_NAME=monsters

DB_HOST=mysql
DB_PORT=3306
DB_NAME=monsters_db
DB_USER=root
DB_PASSWORD=root
DB_ROOT_PASSWORD=root

DATABASE_URL=mysql://root:root@mysql:3306/monsters_db
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"useTabs": true
}
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
### Step 1: Download Docker Desktop
Ensure Docker Desktop is installed on your machine. You can download it from [here](https://www.docker.com/products/docker-desktop).

### Step 2: Install python
### Step 2: Install Python
Ensure Python 3.x is installed on your machine. It is required for the database backup and restore scripts located in the `cli/python` directory.

### Step 3: Start Monsters App

Expand Down