https://github.com/launchscout/team_ash
Moving bits of team app to Ash
https://github.com/launchscout/team_ash
Last synced: 7 months ago
JSON representation
Moving bits of team app to Ash
- Host: GitHub
- URL: https://github.com/launchscout/team_ash
- Owner: launchscout
- Created: 2024-06-28T16:43:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-16T23:13:30.000Z (about 2 years ago)
- Last Synced: 2024-07-17T03:04:14.542Z (about 2 years ago)
- Language: Elixir
- Size: 78.1 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TeamAsh
## Requirements
* [asdf](https://asdf-vm.com/)
## Setup
Run these commands in a terminal:
```
git clone git@github.com:launchscout/team_ash.git
cd team_ash
asdf install
mix setup
```
To start your Phoenix server:
```
mix phx.server
```
Or inside IEx with: `iex -S mix phx.server`
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
## Registering
With the server running visit: [`localhost:4000/register`](http://localhost:4000/register)
After registering, a local session is created authenticating and authorizing requests until the server is restarted or
browser cache cleared. See: `lib/team_ash_web/router.ex` for valid routes.
## Contributing
[How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
offer's the best advice.
### tl;dr
1. [Fork it](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo)!
1. Create your feature branch: `git checkout -b cool-new-feature`
1. Commit your changes: `git commit -am 'Added a cool feature'`
1. Push to the branch: `git push origin cool-new-feature`
1. [Create new Pull Request](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request).