Minor changes while trying to get this running again -- which it very nearly does.
This commit is contained in:
parent
f93a0e854a
commit
ac894f2a42
3 changed files with 7 additions and 9 deletions
|
|
@ -46,8 +46,10 @@ Consequently, to get a build running:
|
||||||
2. within your cloned repository, check out a branch (usually `develop` or `master`);
|
2. within your cloned repository, check out a branch (usually `develop` or `master`);
|
||||||
3. if you have previously built the project within your cloned repository, run `lein clean`;
|
3. if you have previously built the project within your cloned repository, run `lein clean`;
|
||||||
4. **this is the important bit** run `lein adl` to generate much of the application code;
|
4. **this is the important bit** run `lein adl` to generate much of the application code;
|
||||||
5. run `lein run` to start your development server;
|
5. run `lein npm install`;
|
||||||
6. if you want to do client debugging, you'll want to run `figwheel` in a separate process, but also from the same cloned repository directory; I normally do this by opening a second terminal and invoking `lein figwheel`.
|
6. run `lein cljs once`;
|
||||||
|
7. run `lein run` to start your development server;
|
||||||
|
8. if you want to do client debugging, you'll want to run `figwheel` in a separate process, but also from the same cloned repository directory; I normally do this by opening a second terminal and invoking `lein figwheel`.
|
||||||
|
|
||||||
## Further Reading
|
## Further Reading
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -48,9 +48,5 @@
|
||||||
<!-- Signature pad -->
|
<!-- Signature pad -->
|
||||||
<script src="js/lib/node_modules/signature_pad/dist/signature_pad.min.js"></script>
|
<script src="js/lib/node_modules/signature_pad/dist/signature_pad.min.js"></script>
|
||||||
<!-- our actual app -->
|
<!-- our actual app -->
|
||||||
<script src="js/app.js"></script>
|
<script src="js/app.js" type="text/javascript"></script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,8 @@
|
||||||
"Primary connection to the main database. TODO: this does not yet enable
|
"Primary connection to the main database. TODO: this does not yet enable
|
||||||
sharding."
|
sharding."
|
||||||
:start (conman/connect! {:jdbc-url-env (env :database-url)
|
:start (conman/connect! {:jdbc-url-env (env :database-url)
|
||||||
;; :jdbc-url "jdbc:postgresql://127.0.0.1/youyesyet_dev?user=youyesyet&password=thisisnotsecure"
|
:jdbc-url "jdbc:postgresql://127.0.0.1/youyesyet_dev?user=youyesyet&password=yourverysecurepassword"
|
||||||
:jdbc-url "jdbc:postgresql://127.0.0.1/loriner?user=youyesyet&password=thisisnotsecure"
|
;;:jdbc-url "jdbc:postgresql://127.0.0.1/loriner?user=youyesyet&password=thisisnotsecure"
|
||||||
:driver-class-name "org.postgresql.Driver"})
|
:driver-class-name "org.postgresql.Driver"})
|
||||||
:stop (conman/disconnect! *db*))
|
:stop (conman/disconnect! *db*))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue