13 lines
412 B
Bash
13 lines
412 B
Bash
# Create necessary directories
|
|
mkdir -p logs uploads config
|
|
|
|
# Create .gitkeep files
|
|
touch logs/.gitkeep uploads/.gitkeep
|
|
|
|
echo "Project structure created successfully!"
|
|
echo "Next steps:"
|
|
echo "1. Copy env.example to .env and configure your environment variables"
|
|
echo "2. Install dependencies: npm install"
|
|
echo "3. Setup PostgreSQL database and run the schema"
|
|
echo "4. Start development server: npm run dev"
|