majestic web
1.0.0
lein new majestic-web your-project-name
File telah dibuat! File!
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
Anda dapat melakukan beberapa hal yang berbeda, Anda dapat menjalankan semua tes dengan lein test
atau Anda dapat lein repl
dan mengetik (start)
atau Anda dapat menerapkan langsung ke heroku dan menjalankan heroku run lein migrate
untuk mengaktifkan dan menjalankan db. Ini memberi Anda apa yang menurut saya merupakan kumpulan kode kerja terkecil untuk memulai monolit yang megah.