This commit moves the mix.exs, mix.lock and priv directors that were inside app/ to the root directory. Configuration tweaks with paths were done for the asset building. The priv/ directory had to be moved because mix by default symlinks it inside the build output, and I couldn't find a configuration option to have it live inside app/
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			647 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			647 B
		
	
	
	
		
			Text
		
	
	
	
	
	
# If you run "mix test --cover", coverage assets end up here.
 | 
						|
/cover/
 | 
						|
 | 
						|
# Where 3rd-party dependencies like ExDoc output generated docs.
 | 
						|
/doc/
 | 
						|
 | 
						|
# Ignore .fetch files in case you like to edit your project deps locally.
 | 
						|
/.fetch
 | 
						|
 | 
						|
# If the VM crashes, it generates a dump, let's ignore it too.
 | 
						|
erl_crash.dump
 | 
						|
 | 
						|
# Also ignore archive artifacts (built via "mix archive.build").
 | 
						|
*.ez
 | 
						|
 | 
						|
# Temporary files, for example, from tests.
 | 
						|
/tmp/
 | 
						|
 | 
						|
# Ignore package tarball (built via "mix hex.build").
 | 
						|
prymn-*.tar
 | 
						|
 | 
						|
# In case you use Node.js/npm, you want to ignore these.
 | 
						|
npm-debug.log
 | 
						|
/assets/node_modules/
 | 
						|
 | 
						|
# Ignore generated protobuf files
 | 
						|
/lib/prymn_proto/*.pb.ex
 |