majestic web
1.0.0
lein new majestic-web your-project-name
ไฟล์ถูกสร้างขึ้น! ไฟล์!
your-project-name
├── Procfile
├── README.md
├── profiles.clj
├── project.clj
├── resources
│ ├── migrations
│ │ ├── 20170805214656_add_hstore_ext.edn
│ │ └── 20170805214656_create_users_table.edn
│ └── sql
│ └── users.sql
├── src
│ └── your_project_name
│ ├── core.clj
│ ├── db.clj
│ ├── home
│ │ ├── html.clj
│ │ └── http.clj
│ ├── html.clj
│ ├── http.clj
│ ├── middleware.clj
│ ├── migrations.clj
│ ├── responses.clj
│ ├── server.clj
│ ├── sessions
│ │ ├── html.clj
│ │ ├── http.clj
│ │ └── logic.clj
│ ├── users
│ │ ├── db.clj
│ │ ├── html.clj
│ │ ├── http.clj
│ │ └── logic.clj
│ └── utils.clj
└── test
└── your_project_name
├── db_test.clj
├── server_test.clj
├── sessions
│ └── logic_test.clj
└── users
└── logic_test.clj
คุณสามารถทำสิ่งต่าง ๆ สองสามอย่าง คุณสามารถรันการทดสอบทั้งหมดด้วย lein test
หรือคุณสามารถ lein repl
in และพิมพ์ (start)
หรือคุณสามารถปรับใช้โดยตรงกับ heroku และรัน heroku run lein migrate
เพื่อให้ db เริ่มทำงาน มันให้สิ่งที่ฉันคิดว่าเป็นชุดโค้ดการทำงานที่เล็กที่สุดสำหรับการเริ่มต้นเสาหินอันยิ่งใหญ่