The first thing you want to do is copy the drunken-angular
directory and change the name to something else (like, say, my-awesome-app
), and then you'll need to do a three-step find and replace on the name in all the templates.
- Search for
drunken_angular
to capture the configs. - Search for
DrunkenAngular
to capture all the function names. - Search for
Drunken Angular
to capture all static text.
OR
- Search for:
drunken-angular
and replace with:my-awesome-app
. - Search for:
drunken_angular
and replace with:my_awesome_app
. - Search for:
DrunkenAngular
and replace with:MyAwesomeApp
. - Search for:
Drunken Angular
and replace with:My Awesome App
.
Inside /lib folder, rename drunken_angular to my_awesome_app and in the same folder rename drunken_angular.ex to my_awesome_app.ex.
Next, update or delete this readme.
Now you're ready to go! May the Angular and Elixir be with you :)
Good luck!
To start your Phoenix app:
- Clean out artifact dependencies and install fresh dependencies
rm -rf _build deps mix.lock && mix deps.clean --unused && mix deps.get
- Create and migrate your database with
mix ecto.create && mix ecto.migrate
- Install npm packages
npm install
- Compile Sass and Typescript files and launch the phoenix server
npm start
.
Now you can visit localhost:4000
from your browser.
Ready to run in production? Please check our deployment guides.
- Official website: http://www.phoenixframework.org/
- Guides: http://phoenixframework.org/docs/overview
- Docs: http://hexdocs.pm/phoenix
- Mailing list: http://groups.google.com/group/phoenix-talk
- Source: https://github.com/phoenixframework/phoenix