Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit 003774d

Browse files
committedOct 20, 2016
Initial commit
0 parents  commit 003774d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+3468
-0
lines changed
 

‎api/.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# App artifacts
2+
/_build
3+
/db
4+
/deps
5+
/*.ez
6+
7+
# Generated on crash by the VM
8+
erl_crash.dump
9+
10+
# The config/prod.secret.exs file by default contains sensitive
11+
# data and you should not commit it into version control.
12+
#
13+
# Alternatively, you may comment the line below and commit the
14+
# secrets file as long as you replace its contents by environment
15+
# variables.
16+
/config/prod.secret.exs

‎api/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Sling
2+
3+
To start your Phoenix app:
4+
5+
* Install dependencies with `mix deps.get`
6+
* Create and migrate your database with `mix ecto.create && mix ecto.migrate`
7+
* Start Phoenix endpoint with `mix phoenix.server`
8+
9+
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
10+
11+
Ready to run in production? Please [check our deployment guides](http://www.phoenixframework.org/docs/deployment).
12+
13+
## Learn more
14+
15+
* Official website: http://www.phoenixframework.org/
16+
* Guides: http://phoenixframework.org/docs/overview
17+
* Docs: https://hexdocs.pm/phoenix
18+
* Mailing list: http://groups.google.com/group/phoenix-talk
19+
* Source: https://github.com/phoenixframework/phoenix

0 commit comments

Comments
 (0)