asciinema hosting web app
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Marcin Kulik bc6f1ed3c7 Rename resource fns 8 years ago
a2png@551afdb37f
app Add doc about recording from Docker image 8 years ago
config
db
dev Set :png-gen/:bin-path for dev env 8 years ago
lib
public
resources/asciinema Allow setting a2png path via A2PNG_BIN_PATH 8 years ago
script
spec
src Rename resource fns 8 years ago
test/asciinema Unify FileStore and FileServer 8 years ago
uploads
vendor
.dockerignore
.env.example
.gitignore lein new duct 8 years ago
.gitmodules
.rspec.example
.ruby-version
.travis.yml
CONTRIBUTING.md
Dockerfile
Gemfile
Gemfile.lock
Guardfile
LICENSE
Procfile
README.md lein new duct 8 years ago
Rakefile
config.ru
docker-compose.yml
project.clj Use timbre directly 8 years ago
sidekiq.ru
start_sidekiq.rb

README.md

asciinema

FIXME: description

Developing

Setup

When you first clone this repository, run:

lein setup

This will create files for local configuration, and prep your system for the project.

Environment

To begin developing, start with a REPL.

lein repl

Then load the development environment.

user=> (dev)
:loaded

Run go to initiate and start the system.

dev=> (go)
:started

By default this creates a web server at http://localhost:3000.

When you make changes to your source files, use reset to reload any modified files and reset the server.

dev=> (reset)
:reloading (...)
:resumed

Testing

Testing is fastest through the REPL, as you avoid environment startup time.

dev=> (test)
...

But you can also run tests through Leiningen.

lein test

Migrations

Migrations are handled by ragtime. Migration files are stored in the resources/migrations directory, and are applied in alphanumeric order.

To update the database to the latest migration, open the REPL and run:

dev=> (migrate)
Applying 20150815144312-create-users
Applying 20150815145033-create-posts

To rollback the last migration, run:

dev=> (rollback)
Rolling back 20150815145033-create-posts

Note that the system needs to be setup with (init) or (go) before migrations can be applied.

Generators

This project has several generator functions to help you create files.

To create a new endpoint:

dev=> (gen/endpoint "bar")
Creating file src/foo/endpoint/bar.clj
Creating file test/foo/endpoint/bar_test.clj
Creating directory resources/foo/endpoint/bar
nil

To create a new component:

dev=> (gen/component "baz")
Creating file src/foo/component/baz.clj
Creating file test/foo/component/baz_test.clj
nil

To create a new boundary:

dev=> (gen/boundary "quz" foo.component.baz.Baz)
Creating file src/foo/boundary/quz.clj
Creating file test/foo/boundary/quz_test.clj
nil

To create a new SQL migration:

dev=> (gen/sql-migration "create-users")
Creating file resources/foo/migrations/20160519143643-create-users.up.sql
Creating file resources/foo/migrations/20160519143643-create-users.down.sql
nil

Deploying

FIXME: steps to deploy

Copyright © 2017 FIXME